diff options
Diffstat (limited to 'main/libraw/APKBUILD')
-rw-r--r-- | main/libraw/APKBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/main/libraw/APKBUILD b/main/libraw/APKBUILD new file mode 100644 index 0000000000..fb7b8001f6 --- /dev/null +++ b/main/libraw/APKBUILD @@ -0,0 +1,38 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=libraw +pkgver=0.13.5 +pkgrel=1 +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 --prefix=/usr + make lib/libraw.a lib/libraw_r.a + make +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la + +} + +md5sums="bf6894f6a60b411da012f58a0954e910 LibRaw-0.13.5.tar.gz" |