diff options
| author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-10-28 17:29:00 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-06 23:35:34 +0000 |
| commit | 0340573629b5faab18859e731a91876d0798186a (patch) | |
| tree | ae84db74c9dfa6676485b88fccff5f67899f4ca6 /meta/recipes-extended/libarchive/libarchive_3.2.1.bb | |
| parent | 7e3b7e05236d8ece37c9fe5acbf27fd07a7f6e06 (diff) | |
| download | poky-0340573629b5faab18859e731a91876d0798186a.tar.gz | |
libarchive: update to 3.2.2
(From OE-Core rev: 14fc66856a59e44d6861ed4ef88909908e597615)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/libarchive/libarchive_3.2.1.bb')
| -rw-r--r-- | meta/recipes-extended/libarchive/libarchive_3.2.1.bb | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/meta/recipes-extended/libarchive/libarchive_3.2.1.bb b/meta/recipes-extended/libarchive/libarchive_3.2.1.bb deleted file mode 100644 index b65b5df01c..0000000000 --- a/meta/recipes-extended/libarchive/libarchive_3.2.1.bb +++ /dev/null | |||
| @@ -1,67 +0,0 @@ | |||
| 1 | SUMMARY = "Support for reading various archive formats" | ||
| 2 | DESCRIPTION = "C library and command-line tools for reading and writing tar, cpio, zip, ISO, and other archive formats" | ||
| 3 | HOMEPAGE = "http://www.libarchive.org/" | ||
| 4 | SECTION = "devel" | ||
| 5 | LICENSE = "BSD" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=ed99aca006bc346974bb745a35336425" | ||
| 7 | |||
| 8 | DEPENDS = "e2fsprogs-native" | ||
| 9 | |||
| 10 | PACKAGECONFIG ?= "zlib bz2" | ||
| 11 | |||
| 12 | PACKAGECONFIG_append_class-target = "\ | ||
| 13 | libxml2 \ | ||
| 14 | ${@bb.utils.contains('DISTRO_FEATURES', 'acl', 'acl', '', d)} \ | ||
| 15 | ${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'xattr', '', d)} \ | ||
| 16 | ${@bb.utils.contains('DISTRO_FEATURES', 'largefile', 'largefile', '', d)} \ | ||
| 17 | " | ||
| 18 | |||
| 19 | PACKAGECONFIG_append_class-nativesdk = " largefile" | ||
| 20 | |||
| 21 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," | ||
| 22 | PACKAGECONFIG[xattr] = "--enable-xattr,--disable-xattr,attr," | ||
| 23 | PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile,," | ||
| 24 | PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib," | ||
| 25 | PACKAGECONFIG[bz2] = "--with-bz2lib,--without-bz2lib,bzip2," | ||
| 26 | PACKAGECONFIG[xz] = "--with-lzmadec --with-lzma,--without-lzmadec --without-lzma,xz," | ||
| 27 | PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl," | ||
| 28 | PACKAGECONFIG[libxml2] = "--with-xml2,--without-xml2,libxml2," | ||
| 29 | PACKAGECONFIG[expat] = "--with-expat,--without-expat,expat," | ||
| 30 | PACKAGECONFIG[lzo] = "--with-lzo2,--without-lzo2,lzo," | ||
| 31 | PACKAGECONFIG[nettle] = "--with-nettle,--without-nettle,nettle," | ||
| 32 | PACKAGECONFIG[lz4] = "--with-lz4,--without-lz4,lz4," | ||
| 33 | |||
| 34 | SRC_URI = "http://libarchive.org/downloads/libarchive-${PV}.tar.gz \ | ||
| 35 | " | ||
| 36 | |||
| 37 | SRC_URI[md5sum] = "afa257047d1941a565216edbf0171e72" | ||
| 38 | SRC_URI[sha256sum] = "72ee1a4e3fd534525f13a0ba1aa7b05b203d186e0c6072a8a4738649d0b3cfd2" | ||
| 39 | |||
| 40 | inherit autotools update-alternatives pkgconfig | ||
| 41 | |||
| 42 | CPPFLAGS += "-I${WORKDIR}/extra-includes" | ||
| 43 | |||
| 44 | do_configure[cleandirs] += "${WORKDIR}/extra-includes" | ||
| 45 | do_configure_prepend() { | ||
| 46 | # We just need the headers for some type constants, so no need to | ||
| 47 | # build all of e2fsprogs for the target | ||
| 48 | cp -R ${STAGING_INCDIR_NATIVE}/ext2fs ${WORKDIR}/extra-includes/ | ||
| 49 | } | ||
| 50 | |||
| 51 | ALTERNATIVE_PRIORITY = "100" | ||
| 52 | |||
| 53 | PACKAGES =+ "bsdtar" | ||
| 54 | FILES_bsdtar = "${bindir}/bsdtar" | ||
| 55 | |||
| 56 | ALTERNATIVE_bsdtar = "tar" | ||
| 57 | ALTERNATIVE_LINK_NAME[tar] = "${base_bindir}/tar" | ||
| 58 | ALTERNATIVE_TARGET[tar] = "${bindir}/bsdtar" | ||
| 59 | |||
| 60 | PACKAGES =+ "bsdcpio" | ||
| 61 | FILES_bsdcpio = "${bindir}/bsdcpio" | ||
| 62 | |||
| 63 | ALTERNATIVE_bsdcpio = "cpio" | ||
| 64 | ALTERNATIVE_LINK_NAME[cpio] = "${base_bindir}/cpio" | ||
| 65 | ALTERNATIVE_TARGET[cpio] = "${bindir}/bsdcpio" | ||
| 66 | |||
| 67 | BBCLASSEXTEND = "native nativesdk" | ||
