diff options
Diffstat (limited to 'extra/xfce4-cpugraph-plugin/PKGBUILD')
-rw-r--r-- | extra/xfce4-cpugraph-plugin/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/extra/xfce4-cpugraph-plugin/PKGBUILD b/extra/xfce4-cpugraph-plugin/PKGBUILD new file mode 100644 index 000000000..f775fcce7 --- /dev/null +++ b/extra/xfce4-cpugraph-plugin/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 106953 2011-01-19 20:30:45Z andyrtr $ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Contributor: Aurelien Foret <orelien@chez.com> + +pkgname=xfce4-cpugraph-plugin +pkgver=1.0.1 +pkgrel=2 +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') +makedepends=('intltool') +install=${pkgname}.install +source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/1.0/${pkgname}-${pkgver}.tar.bz2) +md5sums=('ff551087b1f61c47b8746e8687c572aa') + +build() { + 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 +} |