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-cpugraph-plugin/PKGBUILD | |
parent | 752015395fc8b95cc4a86b68189cb747fe9a8499 (diff) |
Wed May 2 00:01:22 UTC 2012
Diffstat (limited to 'extra/xfce4-cpugraph-plugin/PKGBUILD')
-rw-r--r-- | extra/xfce4-cpugraph-plugin/PKGBUILD | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/extra/xfce4-cpugraph-plugin/PKGBUILD b/extra/xfce4-cpugraph-plugin/PKGBUILD index e68b3dd7f..423c092a2 100644 --- a/extra/xfce4-cpugraph-plugin/PKGBUILD +++ b/extra/xfce4-cpugraph-plugin/PKGBUILD @@ -1,34 +1,39 @@ -# $Id: PKGBUILD 149242 2012-02-06 16:21:17Z foutrelis $ +# $Id: PKGBUILD 157918 2012-04-30 05:16:48Z foutrelis $ # Maintainer: AndyRTR <andyrtr@archlinux.org> # Contributor: Aurelien Foret <orelien@chez.com> pkgname=xfce4-cpugraph-plugin -pkgver=1.0.1 -pkgrel=3 +pkgver=1.0.2 +pkgrel=1 pkgdesc="CPU graph plugin for the Xfce4 panel" arch=('i686' 'x86_64') license=('GPL' 'custom') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin" groups=('xfce4-goodies') -depends=('xfce4-panel' 'libxfcegui4' 'hicolor-icon-theme') +depends=('xfce4-panel') makedepends=('intltool') -install=${pkgname}.install -source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/1.0/${pkgname}-${pkgver}.tar.bz2) -md5sums=('ff551087b1f61c47b8746e8687c572aa') +options=('!libtool') +install=$pkgname.install +source=(http://archive.xfce.org/src/panel-plugins/$pkgname/1.0/$pkgname-$pkgver.tar.bz2) +sha256sums=('b535a9c3d105c0d1597fa4071fe140912bb483c4401c84ad178531fc85de0577') 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: |