mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-20 05:01:50 +02:00
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libraw
|
|
pkgver=0.15.4
|
|
pkgrel=0
|
|
pkgdesc="Library for reading RAW files obtained from digital photo cameras"
|
|
url="http://www.libraw.org/"
|
|
arch="all"
|
|
license="CDDL LGPL custom"
|
|
depends=""
|
|
makedepends=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://www.libraw.org/data/LibRaw-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/LibRaw-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) patch -p1 -i "$srcdir"/$i || return 1
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
|| return 1
|
|
make lib/libraw.a lib/libraw_r.a
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm "$pkgdir"/usr/lib/*.la
|
|
|
|
}
|
|
|
|
md5sums="358fb3795ab53e1d30d5a61555f1eb17 LibRaw-0.15.4.tar.gz"
|
|
sha256sums="b3fcfee33bc34ae5869a9741880e28a62f029f196cb1d1a007ab156f4a110f79 LibRaw-0.15.4.tar.gz"
|
|
sha512sums="86a0c3bd8e019b415e75ef8e505e317188d8c24fdcf1aae804234e10cc3dcfd452537cc9a25a2a94f27c3b2ee70ab503af6ab189be3449b2ace3a61353fc255e LibRaw-0.15.4.tar.gz"
|