diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-06-05 20:20:25 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-06-05 20:20:25 -0500 |
commit | 33c22f43a52aae722ce4d9cbe47f8d2fff31f395 (patch) | |
tree | 71f9661d9a843cca28225852f8784e48a2b96cb2 /community/rawtherapee/PKGBUILD | |
parent | c87732e5659b56943ef4f120d7c71dcaabc3f849 (diff) | |
parent | 3695b5d62c2aef6e82abc95d775a2ebd89bce081 (diff) |
Merge branch 'master' of vparabola:~/abslibre-pre-mips64el
Conflicts:
multilib-testing/lib32-mesa/PKGBUILD
multilib/lib32-glew/PKGBUILD
testing/iproute2/PKGBUILD
Diffstat (limited to 'community/rawtherapee/PKGBUILD')
-rw-r--r-- | community/rawtherapee/PKGBUILD | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/community/rawtherapee/PKGBUILD b/community/rawtherapee/PKGBUILD index 7abaab16f..9be9c6f15 100644 --- a/community/rawtherapee/PKGBUILD +++ b/community/rawtherapee/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 36068 2010-12-26 11:58:33Z stativ $ +# $Id: PKGBUILD 48519 2011-06-01 11:08:54Z 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=3.0a1_742 +pkgver=3.1m5 pkgrel=1 pkgdesc="RAW photo editor" arch=('i686' 'x86_64' 'mips64el') url="http://www.rawtherapee.com/" license=('GPL') -depends=('libsigc++' 'gtkmm' 'libiptcdata' 'lcms') +depends=('bzip2' 'libsigc++' 'gtkmm' 'libiptcdata' 'lcms2' 'desktop-file-utils') makedepends=('mercurial' 'cmake') install=rawtherapee.install source=(rawtherapee.desktop rawtherapee.png) @@ -20,8 +20,8 @@ md5sums=('83f14b57b27f066705b0aec7ad56c53d' _root="https://rawtherapee.googlecode.com/hg/" _repo="rawtherapee" -_branch="branch_3.0" -_changeset="71045bfba97e" # changeset $pkgver +#_branch="branch_3.0" +#_changeset="71045bfba97e" # changeset $pkgver build() { cd "$srcdir" @@ -30,10 +30,10 @@ build() { if [ -d $_repo ] ; then cd $_repo hg pull - hg up -r $_changeset + hg up "Dev-$pkgver" msg "The local files are updated." else - hg clone -b $_branch -u $_changeset $_root $_repo + hg clone -u "Dev-$pkgver" $_root $_repo fi msg "Mercurial checkout done or server timeout" @@ -45,7 +45,10 @@ build() { mkdir "$srcdir/$_repo-build" cd "$srcdir/$_repo-build" - cmake -DCMAKE_INSTALL_PREFIX=/usr ../$_repo + cmake -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DWITH_MYFILE_MMAP=OFF \ + ../$_repo make } |