diff options
author | dai9ah <dai9ah@protonmail.com> | 2018-02-25 15:29:37 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@alpinelinux.org> | 2018-02-25 18:53:20 +0000 |
commit | c1b3188e3307582987dc58e9ac528213046d453d (patch) | |
tree | e128e8eddf9508e96085c6bd932c014ef0df7158 /community/libraw | |
parent | a6de590a47d6888e595dc46e9d24499a00cb0883 (diff) | |
download | aports-c1b3188e3307582987dc58e9ac528213046d453d.tar.bz2 aports-c1b3188e3307582987dc58e9ac528213046d453d.tar.xz |
community/libraw: upgrade to 0.18.8, modernize
Diffstat (limited to 'community/libraw')
-rw-r--r-- | community/libraw/APKBUILD | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/community/libraw/APKBUILD b/community/libraw/APKBUILD index a7d14d5e85..909eb8c024 100644 --- a/community/libraw/APKBUILD +++ b/community/libraw/APKBUILD @@ -1,6 +1,6 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libraw -pkgver=0.18.7 +pkgver=0.18.8 pkgrel=0 pkgdesc="Library for reading RAW files obtained from digital photo cameras" url="https://www.libraw.org/" @@ -25,16 +25,15 @@ build() { ./configure \ --build=$CBUILD \ --host=$CHOST \ - --prefix=/usr \ - || return 1 + --prefix=/usr #make lib/libraw.a lib/libraw_r.a - make || return 1 + make } package() { cd "$builddir" - make DESTDIR="$pkgdir" install || return 1 + make DESTDIR="$pkgdir" install } -sha512sums="5d906e69427d4f9edff8b3bc24eb85896e037dd98578cf07c668b96f6abd82bc8dd9f937ecbca6472d334c4cf8d8cbc8b07c2c84aba748e22ec55cecc6a4ed78 LibRaw-0.18.7.tar.gz" +sha512sums="48871a5e43c89a17962fae426a962d11a6ce40cb8e7d8abc90e98c899dc42b7e1711398c075901ddbc710fe7e916ba6d507bee7e18975779caa8f5d512b1d580 LibRaw-0.18.8.tar.gz" |