blob: 417473a61e2adfa6ddc6d68c19321b681dfbeb04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
rockspec_format = "3.0"
package = "has_build_dep"
version = "1.0-1"
source = {
url = "http://localhost:8080/file/a_rock.lua"
}
description = {
summary = "An example rockspec that has build dependencies.",
}
dependencies = {
"a_rock",
"lua >= 5.1",
}
build_dependencies = {
"a_build_dep",
}
build = {
type = "builtin",
modules = {
bla = "a_rock.lua"
},
}
|