From c241ea241e8e9c152f6eb14f163b2ae39749f7bf Mon Sep 17 00:00:00 2001 From: Li Jin Date: Fri, 7 Feb 2020 17:29:34 +0800 Subject: releasing moonplus as a lib. --- moonplus-0.1-1.rockspec | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 moonplus-0.1-1.rockspec (limited to 'moonplus-0.1-1.rockspec') 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 @@ +package = "MoonPlus" +version = "0.1-1" +source = { + url = "git+https://github.com/pigpigyyy/MoonPlus" +} +description = { + summary = "MoonPlus is a compiler for Moonscript written in C++.", + detailed = [[ + MoonPlus is a compiler with features from Moonscript language 0.5.0 and more advanced features. could be faster than the original Moonscript compiler. ]], + homepage = "https://github.com/pigpigyyy/MoonPlus", + license = "MIT" +} +dependencies = { + "lua >= 5.1", +} +build = { + type = "cmake", + variables = { + LUA_INCDIR="$(LUA_INCDIR)", + LUA="$(LUA)", + }, + install = { + lib = { + "build.luarocks/moonp.so" + } + } +} -- cgit v1.2.3-55-g6feb