diff options
author | Li Jin <dragon-fly@qq.com> | 2021-02-17 11:22:07 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2021-02-17 11:22:07 +0800 |
commit | 7066392d1c974065181d95d93274136dcd625d43 (patch) | |
tree | cf51eafc2c52cbc12246a306bca172d799193d30 /yuescript-dev-1.rockspec | |
parent | 90cd12ad9ef465f3e435e1bd034dcfbe4e19d016 (diff) | |
download | yuescript-7066392d1c974065181d95d93274136dcd625d43.tar.gz yuescript-7066392d1c974065181d95d93274136dcd625d43.tar.bz2 yuescript-7066392d1c974065181d95d93274136dcd625d43.zip |
stop reusing variables, rename project.
Diffstat (limited to 'yuescript-dev-1.rockspec')
-rw-r--r-- | yuescript-dev-1.rockspec | 33 |
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 @@ | |||
1 | rockspec_format = "3.0" | ||
2 | package = "Yuescript" | ||
3 | version = "dev-1" | ||
4 | source = { | ||
5 | url = "git+https://github.com/pigpigyyy/yuescript" | ||
6 | } | ||
7 | description = { | ||
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 | } | ||
16 | dependencies = { | ||
17 | "lua >= 5.1", | ||
18 | } | ||
19 | build = { | ||
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 | } | ||