From 1e31f3ddc517b4e521c73f7d6eaecd5e1787daa6 Mon Sep 17 00:00:00 2001 From: Philipp Janda Date: Sun, 8 Nov 2020 15:50:43 +0100 Subject: Add latest bit32 rockspec --- rockspecs/bit32-5.3.5.1-1.rockspec | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 rockspecs/bit32-5.3.5.1-1.rockspec 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 @@ +package = "bit32" +version = "5.3.5.1-1" +source = { + url = "https://github.com/keplerproject/lua-compat-5.3/archive/v0.10.zip", + dir = "lua-compat-5.3-0.10", +} +description = { + summary = "Lua 5.2 bit manipulation library", + detailed = [[ + bit32 is the native Lua 5.2 bit manipulation library, in the version + from Lua 5.3; it is compatible with Lua 5.1, 5.2, 5.3 and 5.4. + ]], + homepage = "http://www.lua.org/manual/5.2/manual.html#6.7", + license = "MIT" +} +dependencies = { + "lua >= 5.1, < 5.5" +} +build = { + type = "builtin", + modules = { + bit32 = { + sources = { "lbitlib.c" }, + defines = { "LUA_COMPAT_BITLIB" }, + incdirs = { "c-api" }, + } + } +} -- cgit v1.2.3-55-g6feb