From 458addf2fb40a7794ea3df22441324ce3ca5a792 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Wed, 29 May 2013 13:13:01 -0500 Subject: [PATCH] Create json4lua-0.95-1.rockspec Installs from this git repo. --- json4lua-0.95-1.rockspec | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 json4lua-0.95-1.rockspec diff --git a/json4lua-0.95-1.rockspec b/json4lua-0.95-1.rockspec new file mode 100644 index 0000000..2ac8b5f --- /dev/null +++ b/json4lua-0.95-1.rockspec @@ -0,0 +1,22 @@ +package = "json4lua" +version = "0.95-1" +description = { + summary = "JSON encoding/decoding module for Lua, with some RPC support"; + detailed = "JSON (Javascript Object Notation - http://www.json.org) encoding / decoding module for Lua, and very basic JSON RPC module (requiring socket 2.0)"; + homepage = "https://github.com/rpavlik/json4lua"; +} +source = { + url = "git://github.com/rpavlik/json4lua.git" +} +dependencies = { + "lua ~> 5.1"; + "luasocket"; +} +build = { + type = "builtin"; + modules = { + json = "json/json.lua"; + rpc = "json/rpc.lua"; + rpcserver = "json/rpcserver.lua"; + } +}