Skip to content

Commit c992a9a

Browse files
committed
LuaRocks.
1 parent 596b276 commit c992a9a

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
rockspec_format = "3.0"
2+
3+
package = "LuaPreprocess"
4+
version = "1.20.0-1"
5+
source = {url="git-ssh://[email protected]:ReFreezed/LuaPreprocess.git", branch="master", tag="1.20.0"}
6+
7+
description = {
8+
summary = "A small and straightforward Lua preprocessor with simple syntax.",
9+
detailed = [[
10+
LuaPreprocess is a small and straightforward Lua preprocessor
11+
featuring simple syntax. Write embedded metaprograms to generate code
12+
using normal Lua inside your Lua files.
13+
]],
14+
15+
license = "MIT",
16+
homepage = "http://refreezed.com/luapreprocess/",
17+
issues_url = "https://github.com/ReFreezed/LuaPreprocess/issues",
18+
19+
labels = {
20+
"buildsystem",
21+
"commandline",
22+
"metaprogram",
23+
"preprocessing",
24+
"purelua",
25+
},
26+
}
27+
dependencies = {
28+
"lua >= 5.1, < 5.5",
29+
}
30+
build = {
31+
type = "builtin",
32+
modules = {
33+
preprocess = "preprocess.lua",
34+
["preprocess-cl"] = "preprocess-cl.lua",
35+
},
36+
}

0 commit comments

Comments
 (0)