mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
20 lines
670 B
Bash
20 lines
670 B
Bash
# $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=('arm')
|
|
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
|
|
}
|