aboutsummaryrefslogtreecommitdiff
path: root/moonplus-0.1-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'moonplus-0.1-1.rockspec')
-rw-r--r--moonplus-0.1-1.rockspec27
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 @@
1package = "MoonPlus"
2version = "0.1-1"
3source = {
4 url = "git+https://github.com/pigpigyyy/MoonPlus"
5}
6description = {
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}
13dependencies = {
14 "lua >= 5.1",
15}
16build = {
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}