summaryrefslogtreecommitdiff
path: root/community-staging/rawtherapee/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-staging/rawtherapee/PKGBUILD')
-rw-r--r--community-staging/rawtherapee/PKGBUILD54
1 files changed, 0 insertions, 54 deletions
diff --git a/community-staging/rawtherapee/PKGBUILD b/community-staging/rawtherapee/PKGBUILD
deleted file mode 100644
index 73eb438d6..000000000
--- a/community-staging/rawtherapee/PKGBUILD
+++ /dev/null
@@ -1,54 +0,0 @@
-# $Id: PKGBUILD 62820 2012-01-27 11:15:07Z 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.6
-pkgrel=2
-pkgdesc="RAW photo editor"
-arch=('i686' 'x86_64')
-url="http://www.rawtherapee.com/"
-license=('GPL')
-depends=('bzip2' 'gtkmm' 'libiptcdata' 'lcms2' 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('mercurial' 'cmake')
-install=rawtherapee.install
-source=()
-md5sums=()
-
-_root="https://rawtherapee.googlecode.com/hg/"
-_repo="rawtherapee"
-
-build() {
- cd "$srcdir"
- msg "Connecting to Mercurial server...."
-
- if [ -d $_repo ] ; then
- cd $_repo
- hg pull
- hg up "$pkgver"
- msg "The local files are updated."
- else
- hg clone -u "$pkgver" $_root $_repo
- fi
-
- msg "Mercurial checkout done or server timeout"
- msg "Starting make..."
-
- if [ -e "$srcdir/$_repo-build" ]; then
- rm -rf "$srcdir/$_repo-build"
- fi
- mkdir "$srcdir/$_repo-build"
- cd "$srcdir/$_repo-build"
-
- cmake -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release \
- ../$_repo
- make
-}
-
-package() {
- cd "$srcdir/$_repo-build"
- make DESTDIR="$pkgdir/" install
-}