[rockspec] Add rockspec file.
parent
4dd16c4637
commit
6a6ee31c74
@ -0,0 +1,27 @@
|
|||||||
|
rockspec_format = "3.0"
|
||||||
|
package = "df-serialize"
|
||||||
|
version = "0.1-1"
|
||||||
|
source = {
|
||||||
|
url = "git://git.doublefourteen.io/lua/df-serialize.git"
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "A brainless Lua table serialization library",
|
||||||
|
homepage = "https://git.doublefourteen.io/lua/df-serialize",
|
||||||
|
maintainer = "The DoubleFourteen Code Forge <info@doublefourteen.io>",
|
||||||
|
license = "zlib"
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua >= 5.2"
|
||||||
|
}
|
||||||
|
test_dependencies = {
|
||||||
|
"busted"
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
["df-serialize"] = "init.lua"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
test = {
|
||||||
|
type = "busted"
|
||||||
|
}
|
Loading…
Reference in New Issue