aboutsummaryrefslogtreecommitdiff
path: root/lua-cjson-1.0.3-1.rockspec
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2011-11-27 18:53:22 +1030
committerMark Pulford <mark@kyne.com.au>2011-11-27 18:53:22 +1030
commitd6b3f9ceb6c73121d9fa52bf66b7cfa59b611680 (patch)
tree977c1343194983a89baf28b07797988b14ba87c8 /lua-cjson-1.0.3-1.rockspec
parentbb3931122551240a08dbfaa1a84d55906e3d3cb6 (diff)
downloadlua-cjson-d6b3f9ceb6c73121d9fa52bf66b7cfa59b611680.tar.gz
lua-cjson-d6b3f9ceb6c73121d9fa52bf66b7cfa59b611680.tar.bz2
lua-cjson-d6b3f9ceb6c73121d9fa52bf66b7cfa59b611680.zip
Update version to 1.0.4
Diffstat (limited to 'lua-cjson-1.0.3-1.rockspec')
-rw-r--r--lua-cjson-1.0.3-1.rockspec37
1 files changed, 0 insertions, 37 deletions
diff --git a/lua-cjson-1.0.3-1.rockspec b/lua-cjson-1.0.3-1.rockspec
deleted file mode 100644
index 28514e1..0000000
--- a/lua-cjson-1.0.3-1.rockspec
+++ /dev/null
@@ -1,37 +0,0 @@
1package = "lua-cjson"
2version = "1.0.3-1"
3
4source = {
5 url = "http://www.kyne.com.au/~mark/software/lua-cjson-1.0.3.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-- Optional workarounds:
28-- USE_POSIX_USELOCALE: Linux, OSX. Thread safe. Recommended.
29-- USE_POSIX_SETLOCALE: Works on all ANSI C platforms. May be used when
30-- thread-safety isn't required.
31-- USE_INTERNAL_ISINF: Provide internal isinf() implementation. Required
32-- on some Solaris platforms.
33 defines = { "VERSION=\"1.0.3\"", "USE_POSIX_SETLOCALE" }
34 }
35 },
36 copy_directories = { "tests" }
37}