From: Daniel Mack Date: Tue, 25 Aug 2009 14:04:56 +0000 (+0200) Subject: libarchive package added X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=32518793e17357fced65c928308ffdcebe142563;p=buildroot.git libarchive package added See http://code.google.com/p/libarchive/ [Peter: removed conditional target install, added wchar dependency] Signed-off-by: Daniel Mack Signed-off-by: Peter Korsgaard --- diff --git a/CHANGES b/CHANGES index 414aa16ed9..9180864a6f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,7 @@ 2009.11, Not yet released: + New packages: libarchive + Issues resolved (http://bugs.uclibc.org): #527: misc fixes for dnsmasq package diff --git a/package/Config.in b/package/Config.in index f5f776063b..cf4db520fb 100644 --- a/package/Config.in +++ b/package/Config.in @@ -380,6 +380,7 @@ menu "Compressors / decompressors" if !BR2_PACKAGE_BUSYBOX_HIDE_OTHERS source "package/gzip/Config.in" endif +source "package/libarchive/Config.in" source "package/lzo/Config.in" source "package/lzop/Config.in" source "package/lzma/Config.in" diff --git a/package/libarchive/Config.in b/package/libarchive/Config.in new file mode 100644 index 0000000000..9154861c08 --- /dev/null +++ b/package/libarchive/Config.in @@ -0,0 +1,11 @@ +config BR2_PACKAGE_LIBARCHIVE + bool "libarchive" + depends on BR2_USE_WCHAR + help + Libarchive is a reusable C library for reading and writing a + variety of streaming archive formats. + + http://code.google.com/p/libarchive/ + +comment "libarchive requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/libarchive/libarchive.mk b/package/libarchive/libarchive.mk new file mode 100644 index 0000000000..72590fd02d --- /dev/null +++ b/package/libarchive/libarchive.mk @@ -0,0 +1,15 @@ +############################################################# +# +# libarchive (reusable C library for archive formats) +# +############################################################# +LIBARCHIVE_VERSION = 2.7.1 +LIBARCHIVE_SITE = http://libarchive.googlecode.com/files/ +LIBARCHIVE_SOURCE = libarchive-$(LIBARCHIVE_VERSION).tar.gz +LIBARCHIVE_LIBTOOL_PATCH = NO +LIBARCHIVE_INSTALL_STAGING = YES +LIBARCHIVE_INSTALL_TARGET = YES + +LIBARCHIVE_DEPENDENCIES = uclibc + +$(eval $(call AUTOTARGETS,package,libarchive))