aboutsummaryrefslogtreecommitdiff
path: root/rockspecs
diff options
context:
space:
mode:
authorPhilipp Janda <siffiejoe@gmx.net>2015-01-15 16:03:48 +0100
committerPhilipp Janda <siffiejoe@gmx.net>2015-01-15 16:03:48 +0100
commit0a40bae847e6ac9f0e007b766cb5a87d61a85398 (patch)
tree6c46cd898596166c8d50c1c12632d0dd3503fe89 /rockspecs
parentcdd787b876efe2e662ba7d6e8b9e38bf9f44bc04 (diff)
downloadlua-compat-5.3-0a40bae847e6ac9f0e007b766cb5a87d61a85398.tar.gz
lua-compat-5.3-0a40bae847e6ac9f0e007b766cb5a87d61a85398.tar.bz2
lua-compat-5.3-0a40bae847e6ac9f0e007b766cb5a87d61a85398.zip
add rockspec and info for Lua API
Diffstat (limited to 'rockspecs')
-rw-r--r--rockspecs/compat53-scm-0.rockspec29
1 files changed, 29 insertions, 0 deletions
diff --git a/rockspecs/compat53-scm-0.rockspec b/rockspecs/compat53-scm-0.rockspec
new file mode 100644
index 0000000..a7d0184
--- /dev/null
+++ b/rockspecs/compat53-scm-0.rockspec
@@ -0,0 +1,29 @@
1package = "compat53"
2version = "scm-0"
3source = {
4 url = "https://github.com/keplerproject/lua-compat-5.3/archive/master.zip",
5 dir = "lua-compat-5.3-master",
6}
7description = {
8 summary = "Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1",
9 detailed = [[
10 This is a small module that aims to make it easier to write Lua
11 code in a Lua-5.3-style that runs on Lua 5.3, 5.2, and 5.1.
12 It does *not* make Lua 5.2 (or even 5.1) entirely compatible
13 with Lua 5.3, but it brings the API closer to that of Lua 5.3.
14 ]],
15 homepage = "https://github.com/keplerproject/lua-compat-5.3",
16 license = "MIT"
17}
18dependencies = {
19 "lua >= 5.1, < 5.4",
20 --"struct" -- make Roberto's struct module optional
21}
22build = {
23 type = "builtin",
24 modules = {
25 ["compat53"] = "compat53.lua",
26 ["compat53.utf8"] = "lutf8lib.c",
27 }
28}
29