-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathrockspec.in
More file actions
executable file
·33 lines (33 loc) · 1002 Bytes
/
Copy pathrockspec.in
File metadata and controls
executable file
·33 lines (33 loc) · 1002 Bytes
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
33
package = "lua-digest-crc32lua"
version = "$(_VERSION)"
source = {
--url = "https://github.com/davidm/lua-digest-crc32lua/zipball/v$(_VERSION)",
url = "git://github.com/davidm/lua-digest-crc32lua.git",
branch='$(_VERSION)'
}
description = {
summary = "'digest.crc32lua' CRC-32 checksum implemented in pure Lua",
detailed = [[
Note: use a C binding instead for higher performance.
]],
license = "MIT/X11",
homepage = "https://github.com/davidm/lua-digest-crc32lua",
maintainer = "David Manura <http://lua-users.org/wiki/DavidManura>",
}
dependencies = {
"lua >= 5.1", -- including 5.2
-- one of these bitwise operator libraries:
"lua-bit-numberlua >= 0.3", -- fallback
--"LuaBitOp", -- included in LuaJIT
--"Lua >= 5.2", -- included 'bit32'
--"bit32", -- included in Lua 5.2
}
build = {
type = "none",
install = {
lua = {
["digest.crc32lua"] = "lmod/digest/crc32lua.lua",
}
}
}
-- _VERSION from lmod/digest/crc32lua.lua