diff options
Diffstat (limited to 'testing/startup-notification/PKGBUILD')
-rw-r--r-- | testing/startup-notification/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/startup-notification/PKGBUILD b/testing/startup-notification/PKGBUILD new file mode 100644 index 000000000..d08515e99 --- /dev/null +++ b/testing/startup-notification/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 160410 2012-06-01 20:06:00Z andyrtr $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: dorphell <dorphell@archlinux.org> + +pkgname=startup-notification +pkgver=0.12 +pkgrel=3 +pkgdesc="Monitor and display application startup" +arch=(i686 x86_64) +license=('LGPL') +depends=('libx11' 'xcb-util>=0.3.9') +options=('!libtool') +url="http://www.freedesktop.org" +source=(http://www.freedesktop.org/software/startup-notification/releases/${pkgname}-${pkgver}.tar.gz) +md5sums=('2cd77326d4dcaed9a5a23a1232fb38e9') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i -e '/AC_PATH_XTRA/d' configure.in + autoreconf --force --install + ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |