diff options
author | root <root@rshg054.dnsready.net> | 2012-05-02 00:01:22 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-05-02 00:01:22 +0000 |
commit | defe74c9cba07c321ad2869d8f6872e64a167324 (patch) | |
tree | 22377a98049a863983b9a28d9d79fc737f665cc3 /extra/xfce4-diskperf-plugin | |
parent | 752015395fc8b95cc4a86b68189cb747fe9a8499 (diff) |
Wed May 2 00:01:22 UTC 2012
Diffstat (limited to 'extra/xfce4-diskperf-plugin')
-rw-r--r-- | extra/xfce4-diskperf-plugin/PKGBUILD | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/extra/xfce4-diskperf-plugin/PKGBUILD b/extra/xfce4-diskperf-plugin/PKGBUILD index 9fef72e6e..3c3031e75 100644 --- a/extra/xfce4-diskperf-plugin/PKGBUILD +++ b/extra/xfce4-diskperf-plugin/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 156693 2012-04-23 00:17:10Z eric $ -# Maintainer: AndyRTR <andyrtr@archlinux.org> +# $Id: PKGBUILD 157916 2012-04-30 05:16:21Z foutrelis $ +# Maintainer: # Contributor: Aurelien Foret <orelien@chez.com> pkgname=xfce4-diskperf-plugin -pkgver=2.5.1 +pkgver=2.5.2 pkgrel=1 pkgdesc="Plugin for the Xfce4 panel displaying instant disk/partition performance" arch=('i686' 'x86_64') @@ -13,22 +13,26 @@ groups=('xfce4-goodies') depends=('xfce4-panel') makedepends=('intltool') options=('!libtool') -source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2) -md5sums=('b6053881f3ddff90a0a0baa655c84b27') +source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2) +sha256sums=('a67e1a692f5dad0a8403899d514f29cde2c9d50d692e15ccd367f925adaed36d') build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --libexecdir=/usr/lib \ - --localstatedir=/var \ - --disable-static \ - --disable-debug + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static \ + --disable-debug make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" } + +# vim:set ts=2 sw=2 et: |