mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-02 04:11:33 +02:00
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
# 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"
|