summaryrefslogtreecommitdiff
path: root/community/libopenraw
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/libopenraw
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/libopenraw')
-rw-r--r--community/libopenraw/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/community/libopenraw/PKGBUILD b/community/libopenraw/PKGBUILD
new file mode 100644
index 000000000..0294a5a1d
--- /dev/null
+++ b/community/libopenraw/PKGBUILD
@@ -0,0 +1,23 @@
+# $Id: PKGBUILD 9156 2010-01-23 23:10:28Z ttopper $
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: boromil@gmail.com
+
+pkgname=libopenraw
+pkgver=0.0.8
+pkgrel=3
+pkgdesc="libopenraw is an ongoing project to provide a free software implementation for camera RAW files decoding"
+url="http://libopenraw.freedesktop.org"
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('gtk2')
+makedepends=('boost' 'libjpeg>=7')
+options=('!libtool')
+source=(http://libopenraw.freedesktop.org/download/$pkgname-$pkgver.tar.gz)
+md5sums=('fc26f146586a4b601326130bce6ffd88')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
+ make || return 1
+ make DESTDIR="${pkgdir}" install || return 1
+}