diff options
| author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2015-01-29 12:35:36 +0100 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2015-02-01 00:21:10 +0100 |
| commit | 083f853801afab95aee8e4e9a30c57c69f7f379a (patch) | |
| tree | 5c15f9b594def9d29260ff2bc3029e5dcc92c1bc /package/libzip | |
| parent | 96bc60efa4e81bf552d88e215d7821129bba84b3 (diff) | |
libzip: new package
[Peter: license is BSD-3c]
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/libzip')
| -rw-r--r-- | package/libzip/Config.in | 8 | ||||
| -rw-r--r-- | package/libzip/libzip.mk | 15 |
2 files changed, 23 insertions, 0 deletions
diff --git a/package/libzip/Config.in b/package/libzip/Config.in new file mode 100644 index 000000000..54de9e5af --- /dev/null +++ b/package/libzip/Config.in @@ -0,0 +1,8 @@ +config BR2_PACKAGE_LIBZIP + bool "libzip" + select BR2_PACKAGE_ZLIB + help + C library for reading, creating, and modifying zip archives. This + package also contains zipcmp, ziptorrent and zipmerge utilities. + + http://www.nih.at/libzip/ diff --git a/package/libzip/libzip.mk b/package/libzip/libzip.mk new file mode 100644 index 000000000..e5d8e26e0 --- /dev/null +++ b/package/libzip/libzip.mk @@ -0,0 +1,15 @@ +################################################################################ +# +# libzip +# +################################################################################ + +LIBZIP_VERSION = 0.11.2 +LIBZIP_SITE = http://www.nih.at/libzip/ +LIBZIP_SOURCE = libzip-$(LIBZIP_VERSION).tar.xz +LIBZIP_LICENSE = BSD-3c +LIBZIP_LICENSE_FILES = LICENSE +LIBZIP_INSTALL_STAGING = YES +LIBZIP_DEPENDENCIES = zlib + +$(eval $(autotools-package)) |
