update URLs to point at luarocks fork

This commit is contained in:
daurnimator
2019-08-13 18:52:38 +10:00
parent e6e8fa3f9c
commit 5fa460d22f
3 changed files with 6 additions and 6 deletions

20
argparse-scm-2.rockspec Normal file
View File

@@ -0,0 +1,20 @@
package = "argparse"
version = "scm-2"
source = {
url = "git+https://github.com/luarocks/argparse.git"
}
description = {
summary = "A feature-rich command-line argument parser",
detailed = "Argparse supports positional arguments, options, flags, optional arguments, subcommands and more. Argparse automatically generates usage, help and error messages.",
homepage = "https://github.com/luarocks/argparse",
license = "MIT"
}
dependencies = {
"lua >= 5.1, < 5.4"
}
build = {
type = "builtin",
modules = {
argparse = "src/argparse.lua"
}
}