diff options
Diffstat (limited to 'extra/startup-notification/PKGBUILD')
-rw-r--r-- | extra/startup-notification/PKGBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/extra/startup-notification/PKGBUILD b/extra/startup-notification/PKGBUILD index de12bc3a4..4b1dccd98 100644 --- a/extra/startup-notification/PKGBUILD +++ b/extra/startup-notification/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 111001 2011-02-23 15:59:58Z jgc $ +# $Id: PKGBUILD 124868 2011-05-24 20:23:38Z ibiru $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: dorphell <dorphell@archlinux.org> pkgname=startup-notification -pkgver=0.10 -pkgrel=2 +pkgver=0.12 +pkgrel=1 pkgdesc="Monitor and display application startup" arch=(i686 x86_64 'mips64el') license=('LGPL') @@ -12,13 +12,15 @@ depends=('libx11' 'xcb-util>=0.3.4') options=('!libtool') url="http://www.freedesktop.org" source=(http://www.freedesktop.org/software/startup-notification/releases/${pkgname}-${pkgver}.tar.gz) -md5sums=('bca0ed1c74bc4e483ea2ed12a5717354') +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 } |