Skip to content

Commit 4648c2a

Browse files
committed
Add rockspec
1 parent cbc1780 commit 4648c2a

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

urlencode-0.0.1-0.rockspec

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package = "UrlEncode"
2+
version = "0.0.1-0"
3+
4+
source = {
5+
url = "git://github.com/moznion/lua-url-encode.git",
6+
branch = "v0.0.1",
7+
}
8+
9+
description = {
10+
summary = "A URL encoder/decoder with native extension",
11+
homepage = "https://github.com/moznion/lua-url-encode",
12+
license = "MIT/X11",
13+
maintainer = "moznion <moznion@gmail.com>",
14+
}
15+
16+
dependencies = {
17+
"lua >= 5.1, <= 5.4",
18+
}
19+
20+
build = {
21+
type = "builtin",
22+
modules = {
23+
urlencode = "src/lua-urlencode.c"
24+
},
25+
}

0 commit comments

Comments
 (0)