aboutsummaryrefslogtreecommitdiffstats
path: root/community/libraw/APKBUILD
blob: f5f0450128885b850203cd8e257c6eec6d4290b4 (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libraw
pkgver=0.19.0
pkgrel=0
pkgdesc="Library for reading RAW files obtained from digital photo cameras"
url="https://www.libraw.org"
arch="all"
license="CDDL-1.0 LGPL-2.1-only"
depends=""
makedepends=""
subpackages="$pkgname-dev"
source="https://www.libraw.org/data/LibRaw-$pkgver.tar.gz"
builddir="$srcdir"/LibRaw-$pkgver

# secfixes:
#   0.18.6-r0:
#     - CVE-2017-16910
#   0.18.5-r0:
#     - CVE-2017-13735
#     - CVE-2017-14265

build() {
	cd "$builddir"
	#export CXXFLAGS="$CXXFLAGS -std=gnu++98"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr
	#make lib/libraw.a lib/libraw_r.a
	make
}

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

sha512sums="33d0e9a031add901bdd10ffcde6a0f7837a4f4bec0bbbd21ad661e518dadcb1699133f17b3b2f6cd6cefe87ef3017cb7e1b816c4ce3dfebaaf5d9b2ff6b65238  LibRaw-0.19.0.tar.gz"