-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlua-ttyrant-1.0-1.rockspec
More file actions
38 lines (38 loc) · 971 Bytes
/
lua-ttyrant-1.0-1.rockspec
File metadata and controls
38 lines (38 loc) · 971 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
package = "Lua-TTyrant"
version = "1.0-1"
source = {
url = "git://github.com/valeriupalos/lua-ttyrant.git"
}
description = {
summary = "TokyoTyrant API for Lua.",
detailed = [[
A complete API binding exposing the functions from the
C library of the TokyoTyrant key-value database server
straight into Lua (i.e. it uses the Tyrant C functions
rather than implementing the Tyrant protocol over TCP).
]],
homepage = "http://github.com/valeriupalos/lua-ttyrant",
license = "MIT"
}
dependencies = {
"lua >= 5.1"
}
external_dependencies = {
LIBTOKYOTYRANT = {
header = "tcrdb.h",
}
}
supported_platforms = {
"linux"
}
build = {
type = "builtin",
modules = {
ttyrant = {
incdirs = { "$(LIBTOKYOTYRANT_INCDIR)" },
libdirs = { "$(LIBTOKYOTYRANT_LIBDIR)" },
sources = { "src/ttyrant.c" },
libraries = { "tokyotyrant" }
}
}
}