Skip to content

Commit e64c6a5

Browse files
committed
Add .rockspec for v2.0.2.
1 parent 55ff11b commit e64c6a5

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

rockspec/redis-lua-2.0.2-0.rockspec

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
package = "redis-lua"
2+
version = "2.0.2-0"
3+
4+
source = {
5+
url = "http://cloud.github.com/downloads/nrk/redis-lua/redis-lua-2.0.2-0.tar.gz",
6+
md5 = "4fcfd73761f47470c59a30c3818bee97"
7+
}
8+
9+
description = {
10+
summary = "A Lua client library for the redis key value storage system.",
11+
detailed = [[
12+
A Lua client library for the redis key value storage system.
13+
]],
14+
homepage = "http://github.com/nrk/redis-lua",
15+
license = "MIT/X11"
16+
}
17+
18+
dependencies = {
19+
"lua >= 5.1",
20+
"luasocket"
21+
}
22+
23+
build = {
24+
type = "none",
25+
install = {
26+
lua = {
27+
redis = "src/redis.lua"
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)