aboutsummaryrefslogtreecommitdiff
path: root/moonplus-0.1-1.rockspec
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2020-02-07 17:29:34 +0800
committerLi Jin <dragon-fly@qq.com>2020-02-07 17:29:34 +0800
commitc241ea241e8e9c152f6eb14f163b2ae39749f7bf (patch)
tree2fd05ca6866ea60ca778fb6ff31c7ec429e138c4 /moonplus-0.1-1.rockspec
parent2e50c15bfe67d4709880a0377d37fca191be2f3e (diff)
downloadyuescript-c241ea241e8e9c152f6eb14f163b2ae39749f7bf.tar.gz
yuescript-c241ea241e8e9c152f6eb14f163b2ae39749f7bf.tar.bz2
yuescript-c241ea241e8e9c152f6eb14f163b2ae39749f7bf.zip
releasing moonplus as a lib.
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}