-
Notifications
You must be signed in to change notification settings - Fork 2
/
lua_redis-1.0.0-1.rockspec
55 lines (51 loc) · 1.25 KB
/
lua_redis-1.0.0-1.rockspec
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
44
45
46
47
48
49
50
51
52
53
54
55
package = "lua_redis"
version = "1.0.0-1"
source = {
url = "https://github.com/omrikiei/lua_redis",
tag = "v0.1"
}
description = {
summary = "A hiredis binding for lua, supporting multiple concurrent connection instances",
detailed = [[
]],
homepage = "http://",
license = "MIT/X11"
}
dependencies = {
"lua ~> 5.1"
}
external_dependencies = {
HIREDIS = {
header = "hiredis.h"
}
}
build = {
type = "make",
build_variables = {
CFLAGS="$(CFLAGS)",
LIBFLAG="$(LIBFLAG)",
LUA_INCDIR="$(LUA_INCDIR)",
LUA_LIBDIR="$(LUA_LIBDIR)",
LUA_BINDIR="$(LUA_BINDIR)",
LUA="$(LUA)",
LIBHIREDIS_INCDIR="$(HIREDIS_INCDIR)",
LIBHIREDIS_DIR="$(HIREDIS_DIR)",
},
install_variables = {
INST_PREFIX="$(PREFIX)",
INST_BINDIR="$(BINDIR)",
INST_LIBDIR="$(LIBDIR)",
INST_LUADIR="$(LUADIR)",
INST_CONFDIR="$(CONFDIR)",
},
modules = {
["lua_redis"] = "lua_redis.lua",
["lua_redis.connection"] = "luaredis_connection.lua",
["lua_redis.commands"] = "luaredis_commands.lua",
["lua_redis.connector"] = "luaredis_connector.lua"
},
install = {
lib = { "src/redislib.so" },
lua = { "src/lua_redis.lua", "src/luaredis_connection.lua", "src/luaredis_connector.lua", "src/luaredis_commands.lua" },
}
}