[rockspec] Add rockspec file.

This commit is contained in:
Lorenzo Cogotti 2022-08-10 11:05:31 +02:00
parent 4dd16c4637
commit 6a6ee31c74
1 changed files with 27 additions and 0 deletions

View File

@ -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"
}