serpent/serpent-scm-1.rockspec
Peter Melnichenko aedfe52d49 Use an scm rockspec instead of storing release rockspecs (closes #31).
Allows installing dev version of serpent using `luarocks make`.
There is no reason to store release rockspecs in the repo, they can be
generated using `luarocks new-version --tag <version>`.
2018-04-23 20:54:16 -07:00

25 lines
459 B
Lua

package = "serpent"
version = "scm-1"
source = {
url = "git://github.com/pkulchenko/serpent.git",
}
description = {
summary = "Lua serializer and pretty printer",
homepage = "https://github.com/pkulchenko/serpent",
maintainer = "Paul Kulchenko <paul@kulchenko.com>",
license = "MIT",
}
dependencies = {
"lua >= 5.1, < 5.4",
}
build = {
type = "builtin",
modules = {
["serpent"] = "src/serpent.lua",
},
copy_directories = { "t" },
}