aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2024-02-23 21:04:49 -0300
committerHisham Muhammad <hisham@gobolinux.org>2024-02-23 21:06:44 -0300
commit7af7bf7e0db3c9d88881fdf10d880a6e2ab1d095 (patch)
treed40e1ef9d1a852d7fbf4ce10db1bf8216aaa2e7b
parent88d3c4d4dfc2a76af5b78299ee49a45801b55707 (diff)
downloadlua-compat-5.3-0.13.tar.gz
lua-compat-5.3-0.13.tar.bz2
lua-compat-5.3-0.13.zip
Release 0.13v0.13
-rw-r--r--rockspecs/compat53-0.13-1.rockspec32
1 files changed, 32 insertions, 0 deletions
diff --git a/rockspecs/compat53-0.13-1.rockspec b/rockspecs/compat53-0.13-1.rockspec
new file mode 100644
index 0000000..f08dc66
--- /dev/null
+++ b/rockspecs/compat53-0.13-1.rockspec
@@ -0,0 +1,32 @@
1package = "compat53"
2version = "0.13-1"
3source = {
4 url = "https://github.com/lunarmodules/lua-compat-5.3/archive/v0.13.zip",
5 dir = "lua-compat-5.3-0.13"
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.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/lunarmodules/lua-compat-5.3",
16 license = "MIT"
17}
18dependencies = {
19 "lua >= 5.1, < 5.5"
20 --"struct" -- make Roberto's struct module optional
21}
22build = {
23 type = "builtin",
24 modules = {
25 ["compat53.init"] = "compat53/init.lua",
26 ["compat53.io"] = "liolib.c",
27 ["compat53.module"] = "compat53/module.lua",
28 ["compat53.string"] = "lstrlib.c",
29 ["compat53.table"] = "ltablib.c",
30 ["compat53.utf8"] = "lutf8lib.c"
31 }
32}