diff options
Diffstat (limited to 'extra/xfce4-notifyd/PKGBUILD')
-rw-r--r-- | extra/xfce4-notifyd/PKGBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/extra/xfce4-notifyd/PKGBUILD b/extra/xfce4-notifyd/PKGBUILD new file mode 100644 index 000000000..90f060e99 --- /dev/null +++ b/extra/xfce4-notifyd/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 108801 2011-02-03 16:49:52Z andyrtr $ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Contributor: tobias <tobias funnychar archlinux.org> + +pkgname=xfce4-notifyd +pkgver=0.2.1 +pkgrel=1 +pkgdesc="notification daemon for the xfce desktop" +arch=('i686' 'x86_64' 'mips64el') +license=('GPL2') +url="http://goodies.xfce.org/projects/applications/xfce4-notifyd" +groups=('xfce4-goodies') +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://archive.xfce.org/src/apps/${pkgname}/0.2/${pkgname}-${pkgver}.tar.bz2) +md5sums=('0a63857901809887b587c73024d1089b') + +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 +} |