All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/libminizip: new package
@ 2020-04-06 18:35 Bartosz Bilas
  2020-04-07  6:04 ` Yann E. MORIN
  0 siblings, 1 reply; 7+ messages in thread
From: Bartosz Bilas @ 2020-04-06 18:35 UTC (permalink / raw)
  To: buildroot

libminizip is a minimalistic library that supports compressing,
extracting, viewing, and manipulating zip files.

Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
---
 DEVELOPERS                         |  1 +
 package/Config.in                  |  1 +
 package/libminizip/Config.in       | 11 +++++++++++
 package/libminizip/libminizip.hash |  2 ++
 package/libminizip/libminizip.mk   | 15 +++++++++++++++
 5 files changed, 30 insertions(+)
 create mode 100644 package/libminizip/Config.in
 create mode 100644 package/libminizip/libminizip.hash
 create mode 100644 package/libminizip/libminizip.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index e9ac2b7460..b6243276a3 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -282,6 +282,7 @@ F:	package/orbit/
 N:	Bartosz Bilas <b.bilas@grinn-global.com>
 F:	board/stmicroelectronics/stm32mp157a-dk1/
 F:	configs/stm32mp157a_dk1_defconfig
+F:	package/libminizip/
 F:	package/python-esptool/
 F:	package/python-pyaes/
 F:	package/qt5/qt5scxml/
diff --git a/package/Config.in b/package/Config.in
index 373868ca82..95727396ea 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1278,6 +1278,7 @@ endmenu
 
 menu "Compression and decompression"
 	source "package/libarchive/Config.in"
+	source "package/libminizip/Config.in"
 	source "package/libmspack/Config.in"
 	source "package/libsquish/Config.in"
 	source "package/libzip/Config.in"
diff --git a/package/libminizip/Config.in b/package/libminizip/Config.in
new file mode 100644
index 0000000000..5307db3c4f
--- /dev/null
+++ b/package/libminizip/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_LIBMINIZIP
+	bool "libminizip"
+	select BR2_PACKAGE_ZLIB
+	help
+	  LibMinizip is a minimalistic library that supports compressing,
+	  extracting, viewing, and manipulating zip files.
+
+	  This package includes development support files
+	  for the minizip library.
+
+	  http://www.winimage.com/zLibDll/minizip.html
diff --git a/package/libminizip/libminizip.hash b/package/libminizip/libminizip.hash
new file mode 100644
index 0000000000..1aa87a2901
--- /dev/null
+++ b/package/libminizip/libminizip.hash
@@ -0,0 +1,2 @@
+# Locally computed
+sha256  78d87c463dd6bd446292fe0d3ee72878355b3b7fa52add5722671dfe9290f262  libminizip-1.1.tar.gz
diff --git a/package/libminizip/libminizip.mk b/package/libminizip/libminizip.mk
new file mode 100644
index 0000000000..6ae3c6cb01
--- /dev/null
+++ b/package/libminizip/libminizip.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# libminizip
+#
+################################################################################
+
+LIBMINIZIP_VERSION = 1.1
+LIBMINIZIP_SITE = $(call github,nmoinvaz,minizip,$(LIBMINIZIP_VERSION))
+LIBMINIZIP_DEPENDENCIES = zlib
+LIBMINIZIP_AUTORECONF = YES
+LIBMINIZIP_INSTALL_STAGING = YES
+LIBMINIZIP_LICENSE = Zlib
+LIBMINIZIP_LICENSE_FILES = LICENSE
+
+$(eval $(autotools-package))
-- 
2.26.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-04-07  8:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-06 18:35 [Buildroot] [PATCH] package/libminizip: new package Bartosz Bilas
2020-04-07  6:04 ` Yann E. MORIN
2020-04-07  7:16   ` Bartosz Bilas
2020-04-07  7:45     ` Yann E. MORIN
2020-04-07  7:53       ` Bartosz Bilas
2020-04-07  8:34         ` Yann E. MORIN
2020-04-07  8:50           ` Bartosz Bilas

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.