aboutsummaryrefslogtreecommitdiffstats
path: root/community/mate-notification-daemon/APKBUILD
blob: cea7f7f44319ffbe585c81e2a82bb8408a5a1497 (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
46
# Contributor: Alan Lacerda <alacerda@alpinelinux.org>
# Maintainer: Alan Lacerda <alacerda@alpinelinux.org>
pkgname=mate-notification-daemon
pkgver=1.18.0
pkgrel=0
pkgdesc="Small, passive popup dialogs that notify the user of particular events"
url="https://github.com/mate-desktop/mate-notification-daemon"
arch="all"
license="GPL2"
depends="mate-common"
depends_dev=""
makedepends="$depends_dev libwnck3-dev libnotify-dev libtool intltool dbus-glib-dev
	libcanberra-dev"
install=""
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="http://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz"

_builddir="$srcdir/$pkgname-$pkgver"
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--with-gtk=2.0 \
		--sysconfdir=/etc \
		--prefix=/usr \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="${pkgdir}" install || return 1
}

sha512sums="5405a33dd4f78d22fa5f666b94b74d20c046518d5c631a95b286f370dfd6dc4d1ae6dd2b0676fcf8e01c1d1d40bbfd9055180e1cab869913c3d56a1a5d0872aa  mate-notification-daemon-1.18.0.tar.xz"