diff options
author | root <root@rshg054.dnsready.net> | 2013-03-12 00:04:27 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-03-12 00:04:27 -0700 |
commit | 9f8838d16719128121b4efde3bf6c7cc650f1801 (patch) | |
tree | 54cb20333b4366966150ddc060ca8da9b26bdd40 /community/rawtherapee/PKGBUILD | |
parent | ef17357a9745e05e301b724d13a341067ddb3d5b (diff) |
Tue Mar 12 00:04:26 PDT 2013
Diffstat (limited to 'community/rawtherapee/PKGBUILD')
-rw-r--r-- | community/rawtherapee/PKGBUILD | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/community/rawtherapee/PKGBUILD b/community/rawtherapee/PKGBUILD index bf53ddaf0..229360e2f 100644 --- a/community/rawtherapee/PKGBUILD +++ b/community/rawtherapee/PKGBUILD @@ -1,33 +1,34 @@ -# $Id: PKGBUILD 77564 2012-10-12 13:28:53Z stativ $ +# $Id: PKGBUILD 86054 2013-03-11 19:01:26Z 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.8 +pkgver=4.0.10 pkgrel=1 epoch=1 pkgdesc="RAW photo editor" arch=('i686' 'x86_64') url="http://www.rawtherapee.com/" license=('GPL3') -depends=('gtkmm' 'libiptcdata' 'lcms2' 'desktop-file-utils' 'hicolor-icon-theme') -makedepends=('mercurial' 'cmake') +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=('27b988200c5ff3f2863e1d83200657b2') +md5sums=('cf18a503a978a29af6275e17f7aa67ba') build() { - cd "$srcdir/$pkgname-$pkgver" + 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-$pkgver" + cd "$srcdir/$pkgname-build" make DESTDIR="$pkgdir/" install } |