diff options
| author | Mark Pulford <mark@kyne.com.au> | 2011-08-10 20:47:32 +0930 |
|---|---|---|
| committer | Mark Pulford <mark@kyne.com.au> | 2011-08-10 20:47:32 +0930 |
| commit | 1fc923da45731b39e6aea9f50543cd7e8b0e4ad8 (patch) | |
| tree | bcf8ad75d685011226af1563572373de1e0b8ceb /lua-cjson-1.0.3-1.rockspec | |
| parent | 386fdad6820fefa77355ed330f3072a5e2a4bd3e (diff) | |
| download | lua-cjson-1fc923da45731b39e6aea9f50543cd7e8b0e4ad8.tar.gz lua-cjson-1fc923da45731b39e6aea9f50543cd7e8b0e4ad8.tar.bz2 lua-cjson-1fc923da45731b39e6aea9f50543cd7e8b0e4ad8.zip | |
Update version to 1.0.3
Diffstat (limited to 'lua-cjson-1.0.3-1.rockspec')
| -rw-r--r-- | lua-cjson-1.0.3-1.rockspec | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lua-cjson-1.0.3-1.rockspec b/lua-cjson-1.0.3-1.rockspec new file mode 100644 index 0000000..1550ae9 --- /dev/null +++ b/lua-cjson-1.0.3-1.rockspec | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | package = "lua-cjson" | ||
| 2 | version = "1.0.3-1" | ||
| 3 | |||
| 4 | source = { | ||
| 5 | url = "http://www.kyne.com.au/~mark/software/lua-cjson-1.0.3.zip", | ||
| 6 | } | ||
| 7 | |||
| 8 | description = { | ||
| 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 | |||
| 18 | dependencies = { | ||
| 19 | "lua >= 5.1" | ||
| 20 | } | ||
| 21 | |||
| 22 | build = { | ||
| 23 | type = "builtin", | ||
| 24 | modules = { | ||
| 25 | cjson = { | ||
| 26 | sources = { "lua_cjson.c", "strbuf.c" }, | ||
| 27 | defines = { "VERSION=\"1.0.3\"" } | ||
| 28 | } | ||
| 29 | }, | ||
| 30 | copy_directories = { "tests" } | ||
| 31 | } | ||
