21 lines
452 B
Plaintext
21 lines
452 B
Plaintext
# Description: Desktop notification library
|
|
# URL: https://developer.gnome.org/libnotify/
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Depends on: gdk-pixbuf
|
|
|
|
name=libnotify
|
|
version=0.7.7
|
|
release=2
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr --disable-tests
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
}
|