diff options
author | Philipp Janda <siffiejoe@gmx.net> | 2020-11-08 15:50:43 +0100 |
---|---|---|
committer | Philipp Janda <siffiejoe@gmx.net> | 2020-11-08 15:50:43 +0100 |
commit | 1e31f3ddc517b4e521c73f7d6eaecd5e1787daa6 (patch) | |
tree | f13218ab0109131236545714d31c9eb6e2baf5e8 | |
parent | e245d3a18957e43ef902a59a72c8902e2e4435b9 (diff) | |
download | lua-compat-5.3-1e31f3ddc517b4e521c73f7d6eaecd5e1787daa6.tar.gz lua-compat-5.3-1e31f3ddc517b4e521c73f7d6eaecd5e1787daa6.tar.bz2 lua-compat-5.3-1e31f3ddc517b4e521c73f7d6eaecd5e1787daa6.zip |
Add latest bit32 rockspec
-rw-r--r-- | rockspecs/bit32-5.3.5.1-1.rockspec | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/rockspecs/bit32-5.3.5.1-1.rockspec b/rockspecs/bit32-5.3.5.1-1.rockspec new file mode 100644 index 0000000..ab5d6a7 --- /dev/null +++ b/rockspecs/bit32-5.3.5.1-1.rockspec | |||
@@ -0,0 +1,28 @@ | |||
1 | package = "bit32" | ||
2 | version = "5.3.5.1-1" | ||
3 | source = { | ||
4 | url = "https://github.com/keplerproject/lua-compat-5.3/archive/v0.10.zip", | ||
5 | dir = "lua-compat-5.3-0.10", | ||
6 | } | ||
7 | description = { | ||
8 | summary = "Lua 5.2 bit manipulation library", | ||
9 | detailed = [[ | ||
10 | bit32 is the native Lua 5.2 bit manipulation library, in the version | ||
11 | from Lua 5.3; it is compatible with Lua 5.1, 5.2, 5.3 and 5.4. | ||
12 | ]], | ||
13 | homepage = "http://www.lua.org/manual/5.2/manual.html#6.7", | ||
14 | license = "MIT" | ||
15 | } | ||
16 | dependencies = { | ||
17 | "lua >= 5.1, < 5.5" | ||
18 | } | ||
19 | build = { | ||
20 | type = "builtin", | ||
21 | modules = { | ||
22 | bit32 = { | ||
23 | sources = { "lbitlib.c" }, | ||
24 | defines = { "LUA_COMPAT_BITLIB" }, | ||
25 | incdirs = { "c-api" }, | ||
26 | } | ||
27 | } | ||
28 | } | ||