summaryrefslogtreecommitdiff
path: root/community-testing/ristretto/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/ristretto/PKGBUILD')
-rw-r--r--community-testing/ristretto/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/community-testing/ristretto/PKGBUILD b/community-testing/ristretto/PKGBUILD
new file mode 100644
index 000000000..b41f3d99a
--- /dev/null
+++ b/community-testing/ristretto/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 70073 2012-04-29 02:54:15Z foutrelis $
+# Maintainer: Bartłomiej Piotrowski
+# Contributor: AndyRTR <andyrtr@archlinux.org>
+# Contributor: Ronald van Haren <ronald.archlinux.org>
+
+pkgname=ristretto
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="A fast and lightweight picture-viewer for Xfce"
+arch=('i686' 'x86_64')
+url="http://goodies.xfce.org/projects/applications/ristretto"
+license=('GPL')
+depends=('libxfce4ui' 'libexif' 'desktop-file-utils')
+makedepends=('intltool')
+groups=('xfce4-goodies')
+install=ristretto.install
+source=("http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2")
+md5sums=('a61ef43cd325d985ecf71fcabf0c7940')
+
+build() {
+ cd "${srcdir}/$pkgname-$pkgver"
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --disable-debug
+ make
+}
+
+package() {
+ cd "${srcdir}/$pkgname-$pkgver"
+ make DESTDIR="${pkgdir}" install
+}