blob: 2398d3db02a31c23abb216f417f4eea7e34ed1ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
rockspec_format = "3.0"
package = "a_build_dep"
version = "1.0-1"
source = {
url = "http://localhost:8080/file/a_rock.lua"
}
description = {
summary = "An example rockspec that is a build dependency for has_build_dep.",
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
build_dep = "a_rock.lua"
},
}
|