summaryrefslogtreecommitdiff
path: root/community/rawtherapee/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/rawtherapee/PKGBUILD
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/rawtherapee/PKGBUILD')
-rw-r--r--community/rawtherapee/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/community/rawtherapee/PKGBUILD b/community/rawtherapee/PKGBUILD
new file mode 100644
index 000000000..895426e9b
--- /dev/null
+++ b/community/rawtherapee/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 92590 2013-06-09 15:08:48Z stativ $
+# Maintainer: Lukas Jirkovsky <l.jirkovsky AT gmail.com>
+# Contributor: Bogdan Szczurek <thebodzio(at)gmail.com>
+# Contributor: Vaclav Kramar <vaclav.kramar@tiscali.cz>
+# Contributor: Archie <mymaud@gmail.com>
+
+pkgname=rawtherapee
+pkgver=4.0.11
+pkgrel=1
+epoch=1
+pkgdesc="RAW photo editor"
+arch=('i686' 'x86_64')
+url="http://www.rawtherapee.com/"
+license=('GPL3')
+depends=('fftw' 'gtkmm' 'libcanberra' 'libiptcdata' 'lcms2' 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('cmake')
+install=rawtherapee.install
+source=("http://rawtherapee.googlecode.com/files/rawtherapee-$pkgver.tar.xz")
+md5sums=('d30a54e6446326d8299c06ec76c281d8')
+
+build() {
+ mkdir "$srcdir/$pkgname-build"
+ cd "$srcdir/$pkgname-build"
+
+ cmake -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release \
+ "$srcdir/$pkgname-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-build"
+ make DESTDIR="$pkgdir/" install
+}