blob: 00c1c086632cfe77f977d8d0daf4d683636f6c91 (
plain)
1 # Description: Startup notification library.
2 # URL: http://freedesktop.org/wiki/Software/startup-notification
3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
4 # Packager: Simone Rota, sip at crux dot nu
5 # Depends on: xorg-libsm, xorg-libx11, xorg-libxt, xorg-xcb-util
6
7 name=startup-notification
8 version=0.12
9 release=1
10
11 source=(http://www.freedesktop.org/software/$name/releases/$name-$version.tar.gz)
12
13 build() {
14 cd $name-$version
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18 }
|