From 1fc923da45731b39e6aea9f50543cd7e8b0e4ad8 Mon Sep 17 00:00:00 2001 From: Mark Pulford Date: Wed, 10 Aug 2011 20:47:32 +0930 Subject: Update version to 1.0.3 --- lua-cjson-1.0.3-1.rockspec | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 lua-cjson-1.0.3-1.rockspec (limited to 'lua-cjson-1.0.3-1.rockspec') 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 @@ +package = "lua-cjson" +version = "1.0.3-1" + +source = { + url = "http://www.kyne.com.au/~mark/software/lua-cjson-1.0.3.zip", +} + +description = { + summary = "Fast JSON encoding/parsing support for Lua", + detailed = [[ + Lua CJSON provides fast UTF-8 JSON parsing/encoding support for Lua, + and has no external dependencies. + ]], + homepage = "http://www.kyne.com.au/~mark/software/lua-cjson.php", + license = "MIT" +} + +dependencies = { + "lua >= 5.1" +} + +build = { + type = "builtin", + modules = { + cjson = { + sources = { "lua_cjson.c", "strbuf.c" }, + defines = { "VERSION=\"1.0.3\"" } + } + }, + copy_directories = { "tests" } +} -- cgit v1.2.3-55-g6feb