aboutsummaryrefslogtreecommitdiff
path: root/yuescript-dev-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'yuescript-dev-1.rockspec')
-rw-r--r--yuescript-dev-1.rockspec33
1 files changed, 33 insertions, 0 deletions
diff --git a/yuescript-dev-1.rockspec b/yuescript-dev-1.rockspec
new file mode 100644
index 0000000..75835fc
--- /dev/null
+++ b/yuescript-dev-1.rockspec
@@ -0,0 +1,33 @@
1rockspec_format = "3.0"
2package = "Yuescript"
3version = "dev-1"
4source = {
5 url = "git+https://github.com/pigpigyyy/yuescript"
6}
7description = {
8 summary = "Yuescript is a Moonscript dialect.",
9 detailed = [[
10 Yuescript is a Moonscript dialect. It is derived from Moonscript language 0.5.0 and continuously adopting new features to be more up to date. ]],
11 homepage = "https://github.com/pigpigyyy/yuescript",
12 maintainer = "Li Jin <dragon-fly@qq.com>",
13 labels = {"yuescript","cpp","transpiler","moonscript"},
14 license = "MIT"
15}
16dependencies = {
17 "lua >= 5.1",
18}
19build = {
20 type = "cmake",
21 variables = {
22 LUA_INCDIR="$(LUA_INCDIR)",
23 LUA="$(LUA)",
24 },
25 install = {
26 lib = {
27 "build.luarocks/yue.so"
28 },
29 bin = {
30 "build.luarocks/yue"
31 }
32 }
33}