1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
package = "speech"
version = "scm-1"
source = {
url = "..." -- We don't have one yet
}
description = {
summary = "An example for the LuaRocks tutorial.",
detailed = [[
]],
homepage = "https://github.com/Determinant/nerv-speech", -- We don't have one yet
license = "BSD" -- or whatever you like
}
dependencies = {
"nerv >= scm-1",
"lua >= 5.1"
-- If you depend on other rocks, add them here
}
build = {
-- We'll start here.
type = "make",
build_variables = {
CFLAGS="$(CFLAGS)",
LIBFLAG="$(LIBFLAG)",
LUA_LIBDIR="$(LUA_LIBDIR)",
LUA_BINDIR="$(LUA_BINDIR)",
LUA_INCDIR="$(LUA_INCDIR)",
INST_PREFIX="$(PREFIX)",
LUA="$(LUA)",
},
install_variables = {
LUA_BINDIR="$(LUA_BINDIR)",
INST_PREFIX="$(PREFIX)",
INST_BINDIR="$(BINDIR)",
INST_LIBDIR="$(LIBDIR)",
INST_LUADIR="$(LUADIR)",
INST_CONFDIR="$(CONFDIR)",
},
}
|