blob: 847218784f5c197b28c9e24e4f6dab0a42674fb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
pkgname=mate-notification-daemon
pkgver=2011.12.01
pkgrel=1
pkgdesc="Notification daemon for MATE"
arch=(i686 x86_64)
license=('GPL' 'LGPL')
depends=('libmatenotify' 'libwnck' 'gtk2')
makedepends=('intltool')
conflicts=('notification-daemon')
provides=('notification-daemon')
url="http://matsusoft.com.ar/projects/mate/"
groups=('mate')
options=('!libtool' '!emptydirs')
install=mate-notification-daemon.install
source=()
sha256sums=()
build() {
cd "${srcdir}/../../../"
./autogen.sh \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--libexecdir=/usr/lib/mate-notification-daemon \
--disable-schemas-install || return 1
make || return 1
}
package() {
cd "${srcdir}/../../../"
make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1
# hax! still conflicts with libnotify
#ln -s mate-notify-send ${pkgdir}/usr/bin/notify-send
install -m755 -d "${pkgdir}/usr/share/mateconf/schemas"
mateconf-merge-schema "${pkgdir}/usr/share/mateconf/schemas/${pkgname}.schemas" --domain ${pkgname} ${pkgdir}/etc/mateconf/schemas/*.schemas || return 1
rm -f ${pkgdir}/etc/mateconf/schemas/*.schemas
}
|