diff options
Diffstat (limited to 'extra/ristretto/PKGBUILD')
-rw-r--r-- | extra/ristretto/PKGBUILD | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/extra/ristretto/PKGBUILD b/extra/ristretto/PKGBUILD index 9e75c2104..886adb619 100644 --- a/extra/ristretto/PKGBUILD +++ b/extra/ristretto/PKGBUILD @@ -1,24 +1,24 @@ -# $Id: PKGBUILD 141037 2011-10-22 08:22:04Z andyrtr $ +# $Id: PKGBUILD 141238 2011-10-27 04:35:26Z eric $ # Maintainer: AndyRTR <andyrtr@archlinux.org> # Contributor: Ronald van Haren <ronald.archlinux.org> pkgname=ristretto -pkgver=0.2.0 +pkgver=0.2.1 pkgrel=1 -pkgdesc="Ristretto is a image viewer for Xfce" +pkgdesc="An image viewer for Xfce" arch=('i686' 'x86_64' 'mips64el') url="http://goodies.xfce.org/projects/applications/ristretto" -license=('GPL2') +license=('GPL') depends=('libxfce4ui' 'libexif' 'desktop-file-utils' 'hicolor-icon-theme') makedepends=('intltool' 'gettext' 'pkg-config') options=('!libtool') groups=('xfce4-goodies') -source=(http://archive.xfce.org/src/apps/$pkgname/0.2/$pkgname-$pkgver.tar.bz2) install=ristretto.install -md5sums=('85e9b3d83309cdd84898f35b8d223121') +source=(http://archive.xfce.org/src/apps/$pkgname/0.2/$pkgname-$pkgver.tar.bz2) +md5sums=('df5c2082013f4ad2fc49cd7c25965741') build() { - cd ${srcdir}/$pkgname-$pkgver + cd "${srcdir}/$pkgname-$pkgver" ./configure --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ @@ -27,6 +27,6 @@ build() { } package() { - cd ${srcdir}/$pkgname-$pkgver - make DESTDIR=${pkgdir} install + cd "${srcdir}/$pkgname-$pkgver" + make DESTDIR="${pkgdir}" install } |