Skip to content

Commit 8fa1938

Browse files
committed
rockspec: v0.2.1
1 parent f619563 commit 8fa1938

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
package = "lua-hiredis"
2+
version = "0.2.1-1"
3+
source = {
4+
url = "git://github.com/agladysh/lua-hiredis.git",
5+
branch = "v0.2.1"
6+
}
7+
description = {
8+
summary = "Bindings for hiredis Redis-client library",
9+
homepage = "http://github.com/agladysh/lua-hiredis",
10+
license = "MIT/X11",
11+
maintainer = "Alexander Gladysh <[email protected]>"
12+
}
13+
dependencies = {
14+
"lua >= 5.1"
15+
}
16+
build = {
17+
type = "builtin",
18+
modules = {
19+
hiredis = {
20+
sources = {
21+
"src/lua-hiredis.c",
22+
23+
-- bundled hiredis code --
24+
"lib/hiredis/net.c",
25+
"lib/hiredis/async.c",
26+
"lib/hiredis/dict.c",
27+
"lib/hiredis/hiredis.c",
28+
"lib/hiredis/sds.c"
29+
},
30+
incdirs = {
31+
"src/",
32+
33+
-- bundled hiredis code --
34+
"lib/hiredis/"
35+
}
36+
}
37+
}
38+
}

0 commit comments

Comments
 (0)