mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
# Contributor: Alan Lacerda <alacerda@alpinelinux.org>
|
|
# Maintainer: Alan Lacerda <alacerda@alpinelinux.org>
|
|
pkgname=mate-notification-daemon
|
|
pkgver=1.19.1
|
|
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="GPL-2.0"
|
|
depends="mate-common"
|
|
makedepends="libwnck3-dev libnotify-dev libtool intltool dbus-glib-dev
|
|
libcanberra-dev gtk+3.0-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
|
|
source="http://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--sysconfdir=/etc \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
sha512sums="928f1384ec294414d831291e788592ee12efc53e6ae375b3aa6c8b8f3df00faa9fa8b25a51e5d1b278e9323234da0cf72d23bb728d0c6b1f8ba373fd29d0bb32 mate-notification-daemon-1.19.1.tar.xz"
|