mirror of
https://github.com/pkulchenko/serpent.git
synced 2024-11-21 23:24:24 +00:00
aedfe52d49
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>`.
25 lines
459 B
Lua
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" },
|
|
}
|