Date: Tuesday, January 4, 2011 @ 15:25:10 Author: andyrtr Revision: 104739
upgpkg: xfce4-cpugraph-plugin 1.0.1-1 rebuild for Xfce 4.8pre3 release candidate - fix libexec path Added: xfce4-cpugraph-plugin/trunk/xfce4-cpugraph-plugin.install Modified: xfce4-cpugraph-plugin/trunk/PKGBUILD -------------------------------+ PKGBUILD | 21 +++++++++++++-------- xfce4-cpugraph-plugin.install | 12 ++++++++++++ 2 files changed, 25 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2011-01-04 20:22:22 UTC (rev 104738) +++ PKGBUILD 2011-01-04 20:25:10 UTC (rev 104739) @@ -1,25 +1,30 @@ # $Id$ -# Maintainer: +# Maintainer: AndyRTR <[email protected]> # Contributor: Aurelien Foret <[email protected]> pkgname=xfce4-cpugraph-plugin -pkgver=1.0.0 +pkgver=1.0.1 pkgrel=1 pkgdesc="CPU graph plugin for the Xfce4 panel" arch=('i686' 'x86_64') license=('custom') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') -depends=('xfce4-panel') -makedepends=('pkgconfig' 'perlxml' 'intltool') +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=('ba08c72b0fe52784d97d0a8d15516e84') +md5sums=('ff551087b1f61c47b8746e8687c572aa') build() { cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \ - --localstatedir=/var --disable-static - make || return 1 + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static \ + --disable-debug + make } package() { Added: xfce4-cpugraph-plugin.install =================================================================== --- xfce4-cpugraph-plugin.install (rev 0) +++ xfce4-cpugraph-plugin.install 2011-01-04 20:25:10 UTC (rev 104739) @@ -0,0 +1,12 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} +
