mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 23:04:38 +08:00
62 lines
1.7 KiB
Bash
62 lines
1.7 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
|
|
|
|
pkgname=libarchive
|
|
pkgver=3.1.2
|
|
pkgrel=5
|
|
pkgdesc="library that can create and read several streaming archive formats"
|
|
arch=('x86_64')
|
|
url="http://libarchive.org/"
|
|
license=('BSD')
|
|
depends=('acl' 'attr' 'bzip2' 'expat' 'lzo2>=2.06' 'nettle' 'xz' 'zlib')
|
|
options=('libtool')
|
|
provides=('libarchive.so')
|
|
source=("http://libarchive.org/downloads/$pkgname-$pkgver.tar.gz"
|
|
'0001-mtree-fix-line-filename-length-calculation.patch'
|
|
'0001-Limit-write-requests-to-at-most-INT_MAX.patch'
|
|
'libarchive-3.1.2-acl.patch'
|
|
'libarchive-3.1.2-sparce-mtree.patch')
|
|
md5sums=('efad5a503f66329bb9d2f4308b5de98a'
|
|
'fda89c145bbcd793a96b06b463ef6a72'
|
|
'9bf80940bd3ce861137a0a8dcacf5705'
|
|
'a5c995661c62429ceff2c23ea322393b'
|
|
'cb344a879b3c4550fe3faf86c3826f23')
|
|
|
|
prepare() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
# https://code.google.com/p/libarchive/issues/detail?id=301
|
|
# upstream commit e65bf287f0133426b26611fe3e80b51267987106
|
|
patch -Np1 -i "$srcdir/0001-mtree-fix-line-filename-length-calculation.patch"
|
|
|
|
# https://code.google.com/p/libarchive/issues/detail?id=329
|
|
patch -Np1 -i "$srcdir/libarchive-3.1.2-acl.patch"
|
|
|
|
# CVE-2013-0211
|
|
patch -Np1 -i "$srcdir/0001-Limit-write-requests-to-at-most-INT_MAX.patch"
|
|
|
|
# upstream commit 977bf2a4 - improved mtree support
|
|
patch -p1 -i $srcdir/libarchive-3.1.2-sparce-mtree.patch
|
|
}
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr --without-xml2
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -D -m644 COPYING "$pkgdir"/usr/share/licenses/libarchive/COPYING
|
|
}
|