blob: 31c930c39e0a4e613df45e8efd495a5306e94d95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
rockspec_format = "3.0"
package = "luajit-success"
version = "1.0-1"
source = {
url = "https://raw.githubusercontent.com/keplerproject/luarocks/master/test/testing.lua",
}
description = {
summary = "Test luajit dependency fail",
detailed = [[
Use luajit dependency when running with rockspec_format >= 3.0.
]],
homepage = "http://luarocks.org/",
license = "MIT/X license"
}
dependencies = {
"luajit >= 2.0"
}
build = {
type = "builtin",
modules = {
testing = "testing.lua"
}
}
|