mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
670 B
Bash
21 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
|
||
|
}
|