Date: Tuesday, January 11, 2011 @ 14:09:50 Author: andyrtr Revision: 105784
update pkgbuild, currently won't build, needs porting Modified: xfce4-messenger-plugin/trunk/PKGBUILD ----------+ PKGBUILD | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2011-01-11 18:43:26 UTC (rev 105783) +++ PKGBUILD 2011-01-11 19:09:50 UTC (rev 105784) @@ -1,24 +1,32 @@ # $Id$ -# Maintainer: +# Maintainer: Andreas Radke <[email protected]> # Contributor: Tobias Kieslich <tobias (at) archlinux.org> pkgname=xfce4-messenger-plugin pkgver=0.1.0 -pkgrel=6 +pkgrel=7 pkgdesc="plugin that monitors dbus messages for the Xfce4 panel" arch=('i686' 'x86_64') license=('GPL2') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') -depends=('xfce4-panel' 'dbus') -makedepends=('pkgconfig' 'libxt') +depends=('xfce4-panel' 'libxfcegui4' 'dbus') +makedepends=('libxt') source=(ftp://ftp.berlios.de/pub/xfce-goodies/panel-plugins/4.4/${pkgname}-${pkgver}.tar.bz2) md5sums=('5b79e030139e1f845124c2eb50da9051') 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/xfce4 \ + --localstatedir=/var \ + --disable-static \ + --disable-debug + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR=${pkgdir} install }
