22 lines
484 B
Plaintext
22 lines
484 B
Plaintext
# Description: Desktop notification library
|
|
# URL: http://library.gnome.org/devel/notification-spec/
|
|
# Packager: Matt Housh, jaeger at morpheus dot net
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Depends on: gtk
|
|
|
|
name=libnotify
|
|
version=0.7.6
|
|
release=1
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share
|
|
}
|