mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libraw
|
|
pkgver=0.19.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 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.19.2-r0:
|
|
# - CVE-2018-20363
|
|
# - CVE-2018-20364
|
|
# - CVE-2018-20365
|
|
# 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="163b783f26887219d02694c6ca7cdc5571b15efe3922f7e3ca122a875568bd060c40a364451ea94af44c2ae48705bf96cbef196c7e935e42efe6ee316bb291fa LibRaw-0.19.2.tar.gz"
|