[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

10
package/lzlib/Config.in Normal file
View File

@ -0,0 +1,10 @@
config BR2_PACKAGE_LZLIB
bool "lzlib"
depends on BR2_PACKAGE_LUA
select BR2_PACKAGE_ZLIB
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.
https://github.com/LuaDist/lzlib

3
package/lzlib/lzlib.hash Normal file
View File

@ -0,0 +1,3 @@
# Locally calculated
sha256 cbb0cac5825e940b4ea2f31a336d2aaf6db39847d456920afd8e443804420dbb lzlib-0.4.3.tar.gz
sha256 f817d4a37077e94e9adf379f46ba5cc0b68775d7add2bbd5b2ca68ba140ad5bb lzlib.c

15
package/lzlib/lzlib.mk Normal file
View File

@ -0,0 +1,15 @@
################################################################################
#
# lzlib
#
################################################################################
LZLIB_VERSION = 0.4.3
LZLIB_SITE = $(call github,LuaDist,lzlib,$(LZLIB_VERSION))
LZLIB_DEPENDENCIES = lua zlib
LZLIB_LICENSE = MIT
LZLIB_LICENSE_FILES = lzlib.c
LZLIB_CONF_OPTS = -DINSTALL_CMOD="/usr/lib/lua/$(LUAINTERPRETER_ABIVER)" \
-DINSTALL_LMOD="/usr/share/lua/$(LUAINTERPRETER_ABIVER)"
$(eval $(cmake-package))