File: compat52-scm-1.rockspec

package info (click to toggle)
lua-bit32 5.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 188 kB
  • ctags: 272
  • sloc: ansic: 1,026; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 876 bytes parent folder | download | duplicates (3)
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
package = "compat52"
version = "scm-1"
source = {
   url = "https://github.com/hishamhm/lua-compat-5.2/archive/master.zip",
   dir = "lua-compat-5.2-master",
}
description = {
   summary = "Compatibility module providing Lua-5.2-style APIs for Lua 5.1",
   detailed = [[
      This is a small module that aims to make it easier to write Lua code
      in a Lua-5.2-style that runs on both Lua 5.1 and Lua 5.2. This does *not*
      make Lua 5.1 entirely compatible with Lua 5.2, but it brings the API
      closer to that of Lua 5.2.
   ]],
   homepage = "https://github.com/hishamhm/lua-compat-5.2",
   license = "MIT/X11",
}
dependencies = {
   "lua >= 5.1, < 5.3",
   "bit32",
}
build = {
   type = "builtin",
   modules = {
      ["compat52"] = "compat52.lua",
      ["compat52.strict"] = "compat52/strict.lua",
      ["compat52.mstrict"] = "compat52/mstrict.lua",
   }
}