File: bit32-scm-1.rockspec

package info (click to toggle)
lua-bit32 5.3.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192 kB
  • sloc: ansic: 1,026; makefile: 4
file content (32 lines) | stat: -rw-r--r-- 643 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package = "bit32"

version = "scm-1"

source = {
   url = "git://github.com/keplerproject/lua-compat-5.2.git",
   branch = "master",
}

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 and 5.3.
   ]],
   license = "MIT/X11",
   homepage = "http://www.lua.org/manual/5.2/manual.html#6.7",
}

dependencies = {
   "lua >= 5.1, <= 5.3"
}

build = {
   type = "builtin",
   modules = {
      bit32 = {
         sources = { "lbitlib.c" },
         incdirs = { "c-api" },
      }
   }
}