diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/ristretto/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/ristretto/PKGBUILD')
-rw-r--r-- | community/ristretto/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/ristretto/PKGBUILD b/community/ristretto/PKGBUILD new file mode 100644 index 000000000..4dfed59fa --- /dev/null +++ b/community/ristretto/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 78443 2012-10-18 17:04:59Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski +# Contributor: AndyRTR <andyrtr@archlinux.org> +# Contributor: Ronald van Haren <ronald.archlinux.org> + +pkgname=ristretto +pkgver=0.6.3 +pkgrel=3 +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') +optdepends=('librsvg: SVG support' + 'tumbler: thumbnailing support') +groups=('xfce4-goodies') +install=ristretto.install +source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2) +md5sums=('6b8c9a5d7ed319e4c84a9fefaa18792c') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-debug + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} |