aboutsummaryrefslogtreecommitdiff
path: root/spec/fixtures/luajit-fail-1.0-1.rockspec
blob: f8204600a7c813e9df137b793aff73922de0addc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package = "luajit-fail"
version = "1.0-1"
source = {
   url = "https://raw.githubusercontent.com/keplerproject/luarocks/master/test/testing.lua",
}
description = {
   summary = "Test luajit dependency fail",
   detailed = [[
Fail 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"
   }
}