diff options
author | Francois Perrad <fperrad@gmail.com> | 2014-02-24 08:34:55 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-03-01 16:22:41 +0100 |
commit | d56e04ae6e9ebd769c0720c68564dbb3b88456e2 (patch) | |
tree | 286764873181986ad2c67925a949fba1ba02a676 | |
parent | 30c7e8d2b960b243275328ba3024303cb74e6f95 (diff) | |
download | buildroot-d56e04ae6e9ebd769c0720c68564dbb3b88456e2.tar.gz buildroot-d56e04ae6e9ebd769c0720c68564dbb3b88456e2.zip |
lua-messagepack: new package
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/Config.in | 1 | ||||
-rw-r--r-- | package/lua-messagepack/Config.in | 7 | ||||
-rw-r--r-- | package/lua-messagepack/lua-messagepack.mk | 13 |
3 files changed, 21 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in index 3b143c5a58..cc407e1389 100644 --- a/package/Config.in +++ b/package/Config.in @@ -381,6 +381,7 @@ source "package/lua-cjson/Config.in" source "package/lua-coat/Config.in" source "package/lua-coatpersistent/Config.in" source "package/lua-ev/Config.in" +source "package/lua-messagepack/Config.in" source "package/lua-msgpack-native/Config.in" source "package/lua-testmore/Config.in" source "package/luasql-sqlite3/Config.in" diff --git a/package/lua-messagepack/Config.in b/package/lua-messagepack/Config.in new file mode 100644 index 0000000000..2dab316a8d --- /dev/null +++ b/package/lua-messagepack/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_LUA_MESSAGEPACK + bool "lua-messagepack" + help + A pure Lua implementation of the MessagePack serialization + format. + + http://fperrad.github.io/lua-MessagePack/ diff --git a/package/lua-messagepack/lua-messagepack.mk b/package/lua-messagepack/lua-messagepack.mk new file mode 100644 index 0000000000..9a680eee60 --- /dev/null +++ b/package/lua-messagepack/lua-messagepack.mk @@ -0,0 +1,13 @@ +################################################################################ +# +# lua-messagepack +# +################################################################################ + +LUA_MESSAGEPACK_VERSION_UPSTREAM = 0.3.0 +LUA_MESSAGEPACK_VERSION = $(LUA_MESSAGEPACK_VERSION_UPSTREAM)-1 +LUA_MESSAGEPACK_SUBDIR = lua-MessagePack-$(LUA_MESSAGEPACK_VERSION_UPSTREAM) +LUA_MESSAGEPACK_LICENSE = MIT +LUA_MESSAGEPACK_LICENSE_FILES = $(LUA_MESSAGEPACK_SUBDIR)/COPYRIGHT + +$(eval $(luarocks-package)) |