aboutsummaryrefslogtreecommitdiffstats
path: root/community/libraw/APKBUILD
blob: 481e29afbbc2371d1c12d8c2e251c615b68b4326 (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
50
51
52
53
54
55
56
57
58
59
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libraw
pkgver=0.20.2
pkgrel=0
pkgdesc="Library for reading RAW files obtained from digital photo cameras"
url="https://www.libraw.org"
arch="all"
license="CDDL-1.0 OR LGPL-2.1-only"
makedepends="automake autoconf libtool"
subpackages="$pkgname-dev $pkgname-tools"
source="https://www.libraw.org/data/LibRaw-$pkgver.tar.gz"
builddir="$srcdir"/LibRaw-$pkgver

# secfixes:
#   0.20.0-r0:
#     - CVE-2020-24899
#     - CVE-2020-24890
#   0.19.5-r1:
#     - CVE-2020-15503
#   0.19.2-r0:
#     - CVE-2018-20363
#     - CVE-2018-20364
#     - CVE-2018-20365
#     - CVE-2018-5817
#     - CVE-2018-5818
#     - CVE-2018-5819
#   0.18.6-r0:
#     - CVE-2017-16910
#   0.18.5-r0:
#     - CVE-2017-13735
#     - CVE-2017-14265

prepare() {
	default_prepare
	autoreconf -fi
}

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

package() {
	make DESTDIR="$pkgdir" install
	rm -rf "$pkgdir"/usr/share/doc/
}

tools() {
	pkgdesc="tools for LibRaw"

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

sha512sums="96b1aaf09e2d46448d1b3619270c1f1c32e9bcbd866567cec67d5b1f889362f0fae3f3533ea9bf6a11a917be3b61ee6c9938bad09209d93453039ed04eaeae4a  LibRaw-0.20.2.tar.gz"