-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbitarray-scm-1.rockspec
More file actions
29 lines (29 loc) · 861 Bytes
/
Copy pathbitarray-scm-1.rockspec
File metadata and controls
29 lines (29 loc) · 861 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
package = "bitarray"
version = "scm-1"
source = {
url = "git+https://github.com/cleoold/bitarray.git",
tag = "master"
}
description = {
summary = "Bit array library for lua",
detailed = [[
A simple bit array (or bit set, bit string, boolean vector, ... whatever) data structure for Lua written in pure C.
* Array bit access using overloaded `[]` operators, concatenation with `..`, as well as `&, |, ~` for bit operations (5.3+).
* Object-oriented access. Method chaining is available.
* Conversion between bitarray and unsigned integers (big-endian).
]],
homepage = "https://cleoold.github.io/bitarray/",
license = "MIT"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
bitarray = {
sources = "ext/bitarray.c"
}
},
copy_directories = { "doc" }
}