blob: 4f16ed916722b4d9c2dcbf4c4b05bb0694163b50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Galago Project notification daemon
# URL: http://www.galago-project.org/
# Maintainer: Matt Housh, jaeger at morpheus dot net
# Depends on: gtk3, libcanberra, intltool, dbus-glib
# Run on: gtk3,libcanberra
name=notification-daemon
version=0.7.1
release=1
source=(http://ftp.acc.umu.se/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--libexecdir=/usr/bin
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/locale
}
|