minizip: bump to version 2.5.3
- Move to cmake infrastructure
- Do not enforce zlib dependency
- Add optional bzip2 dependency
- Add mandatory host-pkgconf and libbsd dependency
- Remove miniunzip from Config.in, miniunzip (miniunz) has been merged
with minizip:
a66cc31fac
- Add hash for license file
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
547ba3a187
commit
fd03e8192f
@ -1,6 +1,9 @@
|
||||
config BR2_PACKAGE_MINIZIP
|
||||
bool "minizip"
|
||||
select BR2_PACKAGE_ZLIB
|
||||
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libbsd
|
||||
depends on BR2_USE_WCHAR # libbsd
|
||||
select BR2_PACKAGE_LIBBSD
|
||||
help
|
||||
Enables to extract files from a .zip archive file.
|
||||
It is compatible with PKZip 2.04g, WinZip, InfoZip,
|
||||
@ -9,7 +12,11 @@ config BR2_PACKAGE_MINIZIP
|
||||
https://github.com/nmoinvaz/minizip
|
||||
|
||||
config BR2_PACKAGE_MINIZIP_DEMOS
|
||||
bool "miniunzip/minizip"
|
||||
bool "minizip"
|
||||
depends on BR2_PACKAGE_MINIZIP
|
||||
help
|
||||
Enable miniunzip/minizip binary tools.
|
||||
Enable minizip binary tool.
|
||||
|
||||
comment "minizip needs a toolchain w/ threads, wchar"
|
||||
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
||||
|
@ -1,2 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 5666b5ee3e85dfd2dd119970613c12e6267d31813f07d3ffa5d359fe272cb6d1 minizip-1.1.tar.gz
|
||||
sha256 0afe6528f530cc9c1440053a7bbff53087e86f849e145d233464052c730431e9 minizip-2.5.3.tar.gz
|
||||
sha256 87642305968765a4030fd202ff7006afa67274da7f9bde84506e51ae58ecc2b4 LICENSE
|
||||
|
@ -4,13 +4,26 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MINIZIP_VERSION = 1.1
|
||||
MINIZIP_VERSION = 2.5.3
|
||||
MINIZIP_SITE = $(call github,nmoinvaz,minizip,$(MINIZIP_VERSION))
|
||||
MINIZIP_DEPENDENCIES = zlib
|
||||
MINIZIP_AUTORECONF = YES
|
||||
MINIZIP_DEPENDENCIES = host-pkgconf libbsd
|
||||
MINIZIP_INSTALL_STAGING = YES
|
||||
MINIZIP_CONF_OPTS = $(if $(BR2_PACKAGE_MINIZIP_DEMOS),--enable-demos)
|
||||
MINIZIP_CONF_OPTS = $(if $(BR2_PACKAGE_MINIZIP_DEMOS),-DBUILD_TEST=ON)
|
||||
MINIZIP_LICENSE = Zlib
|
||||
MINIZIP_LICENSE_FILES = LICENSE
|
||||
|
||||
$(eval $(autotools-package))
|
||||
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
||||
MINIZIP_DEPENDENCIES += bzip2
|
||||
MINIZIP_CONF_OPTS += -DUSE_BZIP2=ON
|
||||
else
|
||||
MINIZIP_CONF_OPTS += -DUSE_BZIP2=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
MINIZIP_DEPENDENCIES += zlib
|
||||
MINIZIP_CONF_OPTS += -DUSE_ZLIB=ON
|
||||
else
|
||||
MINIZIP_CONF_OPTS += -DUSE_ZLIB=OFF
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
|
Loading…
Reference in New Issue
Block a user