summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/lua-zlib/rockspec
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/lua-zlib/rockspec')
-rw-r--r--3rdparty/lua-zlib/rockspec35
1 files changed, 35 insertions, 0 deletions
diff --git a/3rdparty/lua-zlib/rockspec b/3rdparty/lua-zlib/rockspec
new file mode 100644
index 00000000000..d248bc099ed
--- /dev/null
+++ b/3rdparty/lua-zlib/rockspec
@@ -0,0 +1,35 @@
+package = "lua-zlib"
+version = "0.3-1"
+source = {
+ url = "git://github.com/brimworks/lua-zlib.git",
+ tag = "v0.4",
+}
+description = {
+ summary = "Simple streaming interface to zlib for Lua.",
+ detailed = [[
+ Simple streaming interface to zlib for Lua.
+ Consists of two functions: inflate and deflate.
+ Both functions return "stream functions" (takes a buffer of input and returns a buffer of output).
+ This project is hosted on github.
+ ]],
+ homepage = "https://github.com/brimworks/lua-zlib",
+ license = "MIT"
+}
+dependencies = {
+ "lua >= 5.1, < 5.3"
+}
+external_dependencies = {
+ ZLIB = {
+ header = "zlib.h"
+ }
+}
+
+build = {
+ type = "builtin",
+ modules = {
+ zlib = {
+ sources = { "lua_zlib.c" };
+ libraries = { "z" },
+ };
+ }
+}