blob: de53c22f7740f90b0f05adc325335a3b3ad94657 (
plain)
1 # Description: Startup notification library.
2 # URL: http://freedesktop.org/wiki/Software/startup-notification
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: xorg-libxt xorg-xcb-util
5
6 name=startup-notification
7 version=0.12
8 release=1
9
10 source=(http://www.freedesktop.org/software/$name/releases/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 }
|