core/startup-notification/PKGBUILD

21 lines
676 B
Bash
Raw Normal View History

2010-03-14 23:48:48 +08:00
# $Id: PKGBUILD 36029 2009-04-19 18:23:54Z jgc $
# Maintainer: dorphell <dorphell@archlinux.org>
pkgname=startup-notification
pkgver=0.10
pkgrel=1
pkgdesc="Monitor and display application startup"
arch=(i686 x86_64)
license=('LGPL')
depends=('libx11' 'libsm' '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')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}