minizip: new package

Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Gustavo Zacarias 2015-11-24 14:11:06 -03:00 committed by Peter Korsgaard
parent 7978db9b86
commit 23e4819107
4 changed files with 34 additions and 0 deletions

View file

@ -741,6 +741,7 @@ menu "Compression and decompression"
source "package/libsquish/Config.in"
source "package/libzip/Config.in"
source "package/lzo/Config.in"
source "package/minizip/Config.in"
source "package/snappy/Config.in"
source "package/szip/Config.in"
source "package/zlib/Config.in"

15
package/minizip/Config.in Normal file
View file

@ -0,0 +1,15 @@
config BR2_PACKAGE_MINIZIP
bool "minizip"
select BR2_PACKAGE_ZLIB
help
Enables to extract files from a .zip archive file.
It is compatible with PKZip 2.04g, WinZip, InfoZip,
MimarSinan Codex Suite 2002 tools, and compatible sofware.
https://github.com/nmoinvaz/minizip
config BR2_PACKAGE_MINIZIP_DEMOS
bool "miniunzip/minizip"
depends on BR2_PACKAGE_MINIZIP
help
Enable miniunzip/minizip binary tools.

View file

@ -0,0 +1,2 @@
# Locally computed
sha256 b39158bdf3d8bf81d3a7412dc761851fda398bc93d8989d5e940ed4ae5bbb52c minizip-977afb22966e6ab0ee401293a8e85fe808133f9a.tar.gz

View file

@ -0,0 +1,16 @@
################################################################################
#
# minizip
#
################################################################################
MINIZIP_VERSION = 977afb22966e6ab0ee401293a8e85fe808133f9a
MINIZIP_SITE = $(call github,nmoinvaz,minizip,$(MINIZIP_VERSION))
MINIZIP_DEPENDENCIES = zlib
MINIZIP_AUTORECONF = YES
MINIZIP_INSTALL_STAGING = YES
MINIZIP_CONF_OPTS = $(if $(BR2_PACKAGE_MINIZIP_DEMOS),--enable-demos)
MINIZIP_LICENSE = zlib license
MINIZIP_LICENSE_FILES = LICENSE
$(eval $(autotools-package))