mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
28 lines
963 B
Bash
28 lines
963 B
Bash
# $Id: PKGBUILD 30697 2009-03-21 12:09:32Z allan $
|
|
# Maintainer: tobias <tobias funnychar archlinux.org>
|
|
|
|
pkgname=xfce4-notifyd
|
|
pkgver=0.1.0
|
|
pkgrel=1
|
|
pkgdesc="notification daemon for the xfce desktop"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://spuriousinterrupt.org/projects/xfce4-notifyd"
|
|
groups=('xfce4-goodies')
|
|
depends=('libxfcegui4>=4.5.99.1' 'libsexy' 'hicolor-icon-theme')
|
|
makedepends=('pkgconfig' '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')
|
|
|
|
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
|
|
}
|