blob: 6c6db97c3e34960add7ca31ff8849131ea6dacc7 (
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
|
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')
provides=('notification-daemon')
url="http://matsusoft.com.ar/projects"
groups=('mate')
options=('!libtool' '!emptydirs')
install=mate-notification-daemon.install
source=(http://sourceforge.net/projects/matede/files/${pkgver}/${pkgname}.tar.gz/download)
sha256sums=('36db424b077488a5786fedf5ea8d15d2c93656b94ba99de0db607e7ceb280767')
build() {
cd "${srcdir}/${pkgname}"
./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}/${pkgname}"
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
}
|