From 7066392d1c974065181d95d93274136dcd625d43 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Wed, 17 Feb 2021 11:22:07 +0800 Subject: stop reusing variables, rename project. --- yuescript-dev-1.rockspec | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 yuescript-dev-1.rockspec (limited to 'yuescript-dev-1.rockspec') 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 @@ +rockspec_format = "3.0" +package = "Yuescript" +version = "dev-1" +source = { + url = "git+https://github.com/pigpigyyy/yuescript" +} +description = { + summary = "Yuescript is a Moonscript dialect.", + detailed = [[ + 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. ]], + homepage = "https://github.com/pigpigyyy/yuescript", + maintainer = "Li Jin ", + labels = {"yuescript","cpp","transpiler","moonscript"}, + license = "MIT" +} +dependencies = { + "lua >= 5.1", +} +build = { + type = "cmake", + variables = { + LUA_INCDIR="$(LUA_INCDIR)", + LUA="$(LUA)", + }, + install = { + lib = { + "build.luarocks/yue.so" + }, + bin = { + "build.luarocks/yue" + } + } +} -- cgit v1.2.3-55-g6feb