-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrockspec
More file actions
43 lines (43 loc) · 918 Bytes
/
Copy pathrockspec
File metadata and controls
43 lines (43 loc) · 918 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
34
35
36
37
38
39
40
41
42
43
rockspec_format = "3.0"
package = "lua-memcached"
version = "1.1.0-1"
description = {
summary = "Lua binding and codec for memcached",
detailed = [[
Lua memcached provides a binding for memcached, a high-performance, distributed memory
object caching system. The module is implemented in C using the binary protocol and
includes a codec for encoding and decoding Lua values.
]],
license = "MIT",
homepage = "https://github.com/anaef/lua-memcached",
labels = { "cache" },
}
dependencies = {
"lua >= 5.3, < 5.6"
}
external_dependencies = {
MEMCACHED = {
header = "memcached/protocol_binary.h"
}
}
source = {
url = "git+https://github.com/anaef/lua-memcached.git",
tag = "v1.1.0",
}
build = {
type = "builtin",
modules = {
memcached = {
sources = {
"src/memcached.c",
},
defines = {
"_REENTRANT",
"_GNU_SOURCE",
},
incdirs = {
"$(MEMCACHED_INCDIR)",
},
},
},
}