diff options
Diffstat (limited to 'abs/extra/xfce4-panel')
-rw-r--r-- | abs/extra/xfce4-panel/PKGBUILD | 30 | ||||
-rw-r--r-- | abs/extra/xfce4-panel/xfce4-panel.install | 11 |
2 files changed, 41 insertions, 0 deletions
diff --git a/abs/extra/xfce4-panel/PKGBUILD b/abs/extra/xfce4-panel/PKGBUILD new file mode 100644 index 0000000..f11c0b1 --- /dev/null +++ b/abs/extra/xfce4-panel/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 80831 2010-05-22 13:45:04Z andyrtr $ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Contributor: tobias <tobias funnychar archlinux.org> + +pkgname=xfce4-panel +pkgver=4.6.4 +pkgrel=1 +pkgdesc="Panel for the Xfce desktop environment" +arch=('i686' 'x86_64') +license=('GPL2') +url="http://www.xfce.org/" +groups=('xfce4') +depends=("libxfcegui4>=4.6.4" 'exo>=0.3.107' 'libwnck' 'hicolor-icon-theme') +makedepends=('pkgconfig' "xfconf>=4.6.2" 'intltool') +options=('!libtool') +install=${pkgname}.install +source=(http://archive.xfce.org/src/xfce/${pkgname}/4.6/${pkgname}-${pkgver}.tar.bz2) +md5sums=('82f10a42aefca4cc26a6633e7478cc65') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \ + --localstatedir=/var --disable-static + make || return 1 +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install || return 1 +} diff --git a/abs/extra/xfce4-panel/xfce4-panel.install b/abs/extra/xfce4-panel/xfce4-panel.install new file mode 100644 index 0000000..21b79d2 --- /dev/null +++ b/abs/extra/xfce4-panel/xfce4-panel.install @@ -0,0 +1,11 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} |