diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-05-21 21:37:32 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-05-21 21:37:32 +0000 |
commit | fc87f55d68b814d39db4095ea757672766f7ade0 (patch) | |
tree | 910689081132c4bdc805b020d85298effd35ecda /x11 | |
parent | d70894d22fbbaa95cfb73c17770296ee3d9f3963 (diff) | |
download | aports-fc87f55d68b814d39db4095ea757672766f7ade0.tar.bz2 aports-fc87f55d68b814d39db4095ea757672766f7ade0.tar.xz |
x11/startup-notification: new aport
Monitor and display application startup
http://www.freedesktop.org
Diffstat (limited to 'x11')
-rw-r--r-- | x11/startup-notification/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/x11/startup-notification/APKBUILD b/x11/startup-notification/APKBUILD new file mode 100644 index 00000000..34f81011 --- /dev/null +++ b/x11/startup-notification/APKBUILD @@ -0,0 +1,23 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=startup-notification +pkgver=0.10 +pkgrel=0 +pkgdesc="Monitor and display application startup" +url="http://www.freedesktop.org" +license="LGPL" +subpackages="$pkgname-dev" +depends="libx11 libsm xcb-util" +makedepends="libx11-dev libsm-dev xcb-util-dev" +source="http://www.freedesktop.org/software/$pkgname/releases/$pkgname-$pkgver.tar.gz" + +build () +{ + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr \ + --localstatedir=/var \ + --sysconfdir=/etc \ + || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="bca0ed1c74bc4e483ea2ed12a5717354 startup-notification-0.10.tar.gz" |