mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 03:42:37 +01:00
55 lines
1.6 KiB
Plaintext
55 lines
1.6 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libarchive
|
|
pkgver=3.1.2
|
|
pkgrel=1
|
|
pkgdesc="library that can create and read several streaming archive formats"
|
|
url="http://libarchive.googlecode.com/"
|
|
arch="all"
|
|
license="BSD"
|
|
depends=""
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-tools"
|
|
makedepends="zlib-dev bzip2-dev xz-dev acl-dev openssl-dev expat-dev"
|
|
depends_dev="$makedepends"
|
|
source="http://www.libarchive.org/downloads/libarchive-$pkgver.tar.gz
|
|
CVE-2013-0211.patch"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build () {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--without-xml2 \
|
|
|| return 1
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm "$pkgdir"/usr/lib/*.la || return 1
|
|
}
|
|
|
|
tools() {
|
|
pkgdesc="libarchive tools bsdtar and bsdcpio"
|
|
mkdir -p "$subpkgdir"/usr/
|
|
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
|
|
}
|
|
|
|
md5sums="efad5a503f66329bb9d2f4308b5de98a libarchive-3.1.2.tar.gz
|
|
fc5f5158d414e3a7e9f085d8d1470014 CVE-2013-0211.patch"
|
|
sha256sums="eb87eacd8fe49e8d90c8fdc189813023ccc319c5e752b01fb6ad0cc7b2c53d5e libarchive-3.1.2.tar.gz
|
|
75f30c3867d3924461bb764ea2ca3c1b1e43240aeb5b0dd93a103fd7a7ca7fe9 CVE-2013-0211.patch"
|
|
sha512sums="1f3c2a675031f93c7d42ae2ed06742b0b1e2236ff57d9117791d62fb8ae77d6cafffbcb5d45b5bd98daa908bd18c576cf82e01a9b1eba699705e23eff3688114 libarchive-3.1.2.tar.gz
|
|
c10470ab67dd94944489f72e4d6f39d98163f5d7a92bcd550aa323e9a1b96148588bd04ac7d8c6ff232dc388559fb3e67552bb5c83ac7626ad714517f5022fce CVE-2013-0211.patch"
|