blob: a3d9c86c36ccfff3a3e6e222201ffe52a90ba12b (
plain)
1 # Description: Desktop notification library
2 # URL: https://developer.gnome.org/libnotify/
3 # Packager: Matt Housh, jaeger at morpheus dot net
4 # Maintainer: Jose V Beneyto, sepen at crux dot nu
5 # Depends on: gtk
6
7 name=libnotify
8 version=0.7.6
9 release=2
10 source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
11
12 build() {
13 cd $name-$version
14
15 export TESTS_CFLAGS=`pkg-config --cflags gtk+-2.0`
16 export TESTS_LIBS=`pkg-config --libs gtk+-2.0`
17
18 ./configure --prefix=/usr
19
20 make
21 make DESTDIR=$PKG install
22
23 rm -rf $PKG/usr/share
24 }
|