diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2025-01-23 10:27:33 +0100 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2025-01-23 10:27:33 +0100 |
commit | 2155a2f28372282f7f0fd084d8e6facf3e79b5f0 (patch) | |
tree | 9edd9cd90805ec6427c511c2ac10d8d6d26d741a | |
parent | 4f445bfaf6d970d7df1479b960fa4f2bac63047c (diff) | |
download | lua-compat-5.3-2155a2f28372282f7f0fd084d8e6facf3e79b5f0.tar.gz lua-compat-5.3-2155a2f28372282f7f0fd084d8e6facf3e79b5f0.tar.bz2 lua-compat-5.3-2155a2f28372282f7f0fd084d8e6facf3e79b5f0.zip |
Release: 0.14.4v0.14.4
-rw-r--r-- | rockspecs/compat53-0.14.4-1.rockspec | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/rockspecs/compat53-0.14.4-1.rockspec b/rockspecs/compat53-0.14.4-1.rockspec new file mode 100644 index 0000000..804220f --- /dev/null +++ b/rockspecs/compat53-0.14.4-1.rockspec | |||
@@ -0,0 +1,32 @@ | |||
1 | package = "compat53" | ||
2 | version = "0.14.4-1" | ||
3 | source = { | ||
4 | url = "https://github.com/lunarmodules/lua-compat-5.3/archive/v0.14.4.zip", | ||
5 | dir = "lua-compat-5.3-0.14.4" | ||
6 | } | ||
7 | description = { | ||
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 | } | ||
18 | dependencies = { | ||
19 | "lua >= 5.1, < 5.5" | ||
20 | } | ||
21 | build = { | ||
22 | type = "builtin", | ||
23 | modules = { | ||
24 | ["compat53.file_mt"] = "compat53/file_mt.lua", | ||
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 | } | ||