blob: 5f8e62195db59190fdd4a764a5ba91371e1d7100 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package = "missing_external"
version = "0.1-1"
source = {
-- any valid URL
url = "https://raw.github.com/keplerproject/luarocks/master/src/luarocks/build.lua"
}
description = {
summary = "Missing external dependency",
}
external_dependencies = {
INEXISTENT = {
library = "inexistentlib*",
header = "inexistentheader*.h",
}
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
build = "build.lua"
}
}
|