aboutsummaryrefslogtreecommitdiff
path: root/lua-cjson-1.0.2-1.rockspec
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2011-05-29 20:04:53 +0930
committerMark Pulford <mark@kyne.com.au>2011-05-29 20:04:53 +0930
commitc8fc62e4f955248f2655e996872b6833b86b1523 (patch)
tree81c514c63475e3657ecbdacd9bd316432b3f12fd /lua-cjson-1.0.2-1.rockspec
parent3d1c5e19f45cf484774926ba6e2555d1c8e4c39b (diff)
downloadlua-cjson-c8fc62e4f955248f2655e996872b6833b86b1523.tar.gz
lua-cjson-c8fc62e4f955248f2655e996872b6833b86b1523.tar.bz2
lua-cjson-c8fc62e4f955248f2655e996872b6833b86b1523.zip
Update version to 1.0.2
Diffstat (limited to 'lua-cjson-1.0.2-1.rockspec')
-rw-r--r--lua-cjson-1.0.2-1.rockspec31
1 files changed, 31 insertions, 0 deletions
diff --git a/lua-cjson-1.0.2-1.rockspec b/lua-cjson-1.0.2-1.rockspec
new file mode 100644
index 0000000..e20132e
--- /dev/null
+++ b/lua-cjson-1.0.2-1.rockspec
@@ -0,0 +1,31 @@
1package = "lua-cjson"
2version = "1.0.2-1"
3
4source = {
5 url = "http://www.kyne.com.au/~mark/software/lua-cjson-1.0.2.zip",
6}
7
8description = {
9 summary = "Fast JSON encoding/parsing support for Lua",
10 detailed = [[
11 Lua CJSON provides fast UTF-8 JSON parsing/encoding support for Lua,
12 and has no external dependencies.
13 ]],
14 homepage = "http://www.kyne.com.au/~mark/software/lua-cjson.php",
15 license = "MIT"
16}
17
18dependencies = {
19 "lua >= 5.1"
20}
21
22build = {
23 type = "builtin",
24 modules = {
25 cjson = {
26 sources = { "lua_cjson.c", "strbuf.c" },
27 defines = { "VERSION=\"1.0.2\"" }
28 }
29 },
30 copy_directories = { "tests" }
31}