21 lines
476 B
Plaintext
21 lines
476 B
Plaintext
# Description: Notification daemon for the desktop notifications framework
|
|
# URL: http://www.gnome.org/
|
|
# Packager: pierre at nutyx dot org
|
|
# Depends on: intltool gtk3 libcanberra
|
|
|
|
name=notification-daemon
|
|
version=3.16.1
|
|
release=1
|
|
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/notification-daemon
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|