diff options
Diffstat (limited to 'moonplus-0.1-1.rockspec')
-rw-r--r-- | moonplus-0.1-1.rockspec | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/moonplus-0.1-1.rockspec b/moonplus-0.1-1.rockspec new file mode 100644 index 0000000..aeebe69 --- /dev/null +++ b/moonplus-0.1-1.rockspec | |||
@@ -0,0 +1,27 @@ | |||
1 | package = "MoonPlus" | ||
2 | version = "0.1-1" | ||
3 | source = { | ||
4 | url = "git+https://github.com/pigpigyyy/MoonPlus" | ||
5 | } | ||
6 | description = { | ||
7 | summary = "MoonPlus is a compiler for Moonscript written in C++.", | ||
8 | detailed = [[ | ||
9 | MoonPlus is a compiler with features from Moonscript language 0.5.0 and more advanced features. could be faster than the original Moonscript compiler. ]], | ||
10 | homepage = "https://github.com/pigpigyyy/MoonPlus", | ||
11 | license = "MIT" | ||
12 | } | ||
13 | dependencies = { | ||
14 | "lua >= 5.1", | ||
15 | } | ||
16 | build = { | ||
17 | type = "cmake", | ||
18 | variables = { | ||
19 | LUA_INCDIR="$(LUA_INCDIR)", | ||
20 | LUA="$(LUA)", | ||
21 | }, | ||
22 | install = { | ||
23 | lib = { | ||
24 | "build.luarocks/moonp.so" | ||
25 | } | ||
26 | } | ||
27 | } | ||