mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 14:03:29 +08:00
afdaeab729
Add lzlib.c as the license file and, while at it, update indentation to two spaces Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16 lines
495 B
Makefile
16 lines
495 B
Makefile
################################################################################
|
|
#
|
|
# 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))
|