blob: 5aa9ce6581e051a5763b55dc3e95b23abb4b00c9 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libraw
pkgver=0.16.0
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="21f569be043057b754d87e3062e2345a LibRaw-0.16.0.tar.gz"
sha256sums="71f43871ec2535345c5c9b748f07813e49915170f9510b721a2be6478426cf96 LibRaw-0.16.0.tar.gz"
sha512sums="192e0e78e8f32235618007d6917f92153e7cb8a2d83ca0933f21d4fce3d550c507f5410ba18d86b0f0a16b0ac81ba8cc4cf788fa217080507ac0b3c39e51a9ef LibRaw-0.16.0.tar.gz"
|