hererocks/hererocks-test-scm-1.rockspec
2015-11-23 20:35:43 +03:00

27 lines
570 B
Lua

package = "hererocks-test"
version = "scm-1"
source = {
url = "git://github.com/mpeterv/hererocks"
}
description = {
summary = "A test rock for hererocks",
detailed = "A test rock for hererocks",
homepage = "https://github.com/mpeterv/hererocks",
license = "MIT <http://opensource.org/licenses/MIT>"
}
dependencies = {
"lua >= 5.1, < 5.4"
}
build = {
type = "builtin",
modules = {
["hererocks.test"] = "test.lua"
},
install = {
bin = {
["hererocks-test"] = "hererocks-test.lua"
}
},
copy_directories = {}
}