aboutsummaryrefslogtreecommitdiffstats
path: root/main/libarchive/APKBUILD
blob: cfecc03b66afe9d2608ecb3628fc4af62d8c0059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Contributor: Sergei Lukin <sergej.lukin@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libarchive
pkgver=3.5.3
pkgrel=0
pkgdesc="library that can create and read several streaming archive formats"
url="https://libarchive.org/"
arch="all"
license="BSD-2-Clause AND BSD-3-Clause AND Public-Domain"
makedepends="zlib-dev bzip2-dev xz-dev lz4-dev acl-dev openssl-dev expat-dev
	attr-dev zstd-dev"
subpackages="$pkgname-static $pkgname-dev $pkgname-doc $pkgname-tools"
source="https://libarchive.org/downloads/libarchive-$pkgver.tar.xz"

# secfixes:
#   3.5.3-r0:
#     - CVE-2021-31566
#     - CVE-2021-36976
#   3.4.2-r0:
#     - CVE-2020-19221
#     - CVE-2020-9308
#   3.4.0-r0:
#     - CVE-2019-18408
#   3.3.2-r1:
#     - CVE-2017-14166

build() {
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--without-xml2
	make
}

package() {
	make DESTDIR="$pkgdir" install
}

tools() {
	pkgdesc="libarchive tools bsdtar and bsdcpio"

	mkdir -p "$subpkgdir"/usr/
	mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
}

sha512sums="
90da8508cbaf4e187234e70ded9522316db35c3843eb6d51e8676088d9db68b13490d53eb05c6dbf6df78496319ce2a4bd4e4a3a1b83240a57b58492aceb4c7f  libarchive-3.5.3.tar.xz
"