blob: 5ddf986bcaf5d9be1ddbd377664289880a36b60f (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xfce4-notifyd
pkgver=0.4.3
pkgrel=0
pkgdesc="Notification daemon for the xfce desktop"
url="https://docs.xfce.org/apps/notifyd/"
arch="all"
license="GPL-2.0"
depends="hicolor-icon-theme"
makedepends="gtk+3.0-dev libxfce4util libxfce4ui-dev libsexy-dev xfconf-dev
dbus-glib-dev libglade-dev libnotify-dev xfce4-panel-dev"
subpackages="$pkgname-lang $pkgname-doc"
source="https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2"
builddir="$srcdir/$pkgname-$pkgver"
build () {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/xfce4 \
--localstatedir=/var \
--disable-static
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
rm -rf "$pkgdir"/usr/lib/systemd
}
sha512sums="eed16d863dddfe29ce6dd1e34260ae64f558bc5ffe5af837e293a9492b728a400338b950116fb934f0b3d0a76ed8fd280aacd075d44524be614bb27257b99a9e xfce4-notifyd-0.4.3.tar.bz2"
|