diff options
Diffstat (limited to 'package/lzlib')
-rw-r--r-- | package/lzlib/Config.in | 10 | ||||
-rw-r--r-- | package/lzlib/lzlib.mk | 12 |
2 files changed, 22 insertions, 0 deletions
diff --git a/package/lzlib/Config.in b/package/lzlib/Config.in new file mode 100644 index 0000000000..d2b4818675 --- /dev/null +++ b/package/lzlib/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_LZLIB + bool "lzlib" + select BR2_PACKAGE_ZLIB + depends on BR2_PACKAGE_HAS_LUA_INTERPRETER + help + This package provides a library to access zlib library + functions and also to read/write gzip files using an + interface similar to the base io package. + + http://luaforge.net/projects/lzlib/ diff --git a/package/lzlib/lzlib.mk b/package/lzlib/lzlib.mk new file mode 100644 index 0000000000..24208ba617 --- /dev/null +++ b/package/lzlib/lzlib.mk @@ -0,0 +1,12 @@ +############################################################# +# +# lzlib +# +############################################################# + +LZLIB_VERSION = 0.4.work3-1 +LZLIB_SUBDIR = lzlib-0.4-work3 +LZLIB_DEPENDENCIES = zlib +LZLIB_LICENSE = MIT + +$(eval $(luarocks-package)) |