Date: Tuesday, January 4, 2011 @ 15:57:50 Author: andyrtr Revision: 104765
upgpkg: xfce4-notifyd 0.2.0-1 new upstream release - part of Xfce 4.8pre3 release candidate Modified: xfce4-notifyd/trunk/PKGBUILD ----------+ PKGBUILD | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2011-01-04 20:56:46 UTC (rev 104764) +++ PKGBUILD 2011-01-04 20:57:50 UTC (rev 104765) @@ -1,28 +1,37 @@ # $Id$ -# Maintainer: tobias <tobias funnychar archlinux.org> +# Maintainer: AndyRTR <andy...@archlinux.org> +# Contributor: tobias <tobias funnychar archlinux.org> pkgname=xfce4-notifyd -pkgver=0.1.0 -pkgrel=2 +pkgver=0.2.0 +pkgrel=1 pkgdesc="notification daemon for the xfce desktop" -arch=(i686 x86_64) +arch=('i686' 'x86_64') license=('GPL2') -url="http://spuriousinterrupt.org/projects/xfce4-notifyd" +url="http://goodies.xfce.org/projects/applications/xfce4-notifyd" groups=('xfce4-goodies') -depends=('libxfcegui4>=4.5.99.1' 'libsexy' 'hicolor-icon-theme') -makedepends=('pkgconfig' 'intltool') +depends=('libxfce4ui' 'hicolor-icon-theme') +makedepends=('intltool') provides=('notification-daemon') conflicts=('notification-daemon' 'notification-daemon-xfce') replaces=('notification-daemon-xfce') options=('!libtool') install=${pkgname}.install -source=(http://spuriousinterrupt.org/files/${pkgname}/${pkgname}-${pkgver}.tar.bz2) -md5sums=('659ecaf37f0f7ee9e31f7b25f9813778') +source=(http://archive.xfce.org/src/apps/${pkgname}/0.2/${pkgname}-${pkgver}.tar.bz2) +md5sums=('4b614f738e87a7b84c2de0bddf6721b8') build() { cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \ - --localstatedir=/var --disable-static - make || return 1 - make DESTDIR=${pkgdir} install || return 1 + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static \ + --disable-debug + make } + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +}