mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Both packages use the same tarball as source. Added comments to keep the version number in sync. Transformed minizip-zlib.hash into a link to ../libzlib/libzlib.hash. Added MINIZIP_ZLIB_DL_SUBDIR = libzlib so minizip-zlib uses the same tarball as libzlib. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
23 lines
810 B
Makefile
23 lines
810 B
Makefile
################################################################################
|
|
#
|
|
# minizip-zlib
|
|
#
|
|
################################################################################
|
|
|
|
# When updating the version here, please also update the libzlib package
|
|
MINIZIP_ZLIB_VERSION = 1.3.2
|
|
MINIZIP_ZLIB_SOURCE = zlib-$(MINIZIP_ZLIB_VERSION).tar.xz
|
|
MINIZIP_ZLIB_SITE = https://www.zlib.net
|
|
MINIZIP_ZLIB_DL_SUBDIR = libzlib
|
|
MINIZIP_ZLIB_LICENSE = Zlib
|
|
MINIZIP_ZLIB_LICENSE_FILES = LICENSE
|
|
MINIZIP_ZLIB_INSTALL_STAGING = YES
|
|
MINIZIP_ZLIB_SUBDIR = contrib/minizip
|
|
# configure is not shipped in contrib/minizip
|
|
MINIZIP_ZLIB_AUTORECONF = YES
|
|
MINIZIP_ZLIB_DEPENDENCIES = zlib
|
|
# demos must be disabled to avoid a conflict with BR2_PACKAGE_MINIZIP_DEMOS
|
|
MINIZIP_ZLIB_CONF_OPTS = --disable-demos
|
|
|
|
$(eval $(autotools-package))
|