mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
29 lines
662 B
Plaintext
29 lines
662 B
Plaintext
# Description: Themable notification daemon with transparency effects
|
|
# URL: https://docs.xfce.org/apps/notifyd/start
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: libcanberra libnotify xfce4-panel
|
|
|
|
name=xfce4-notifyd
|
|
version=0.9.6
|
|
release=1
|
|
source=(https://archive.xfce.org/src/apps/$name/${version%.*}/$name-$version.tar.bz2)
|
|
|
|
build () {
|
|
cd $SRC/$name-$version
|
|
|
|
./configure \
|
|
--sysconfdir=/etc \
|
|
--prefix=/usr \
|
|
--disable-nls \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-debug
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm $PKG/usr/lib/xfce4/panel/plugins/*.la
|
|
rm -rf $PKG/usr/share/{locale,doc}
|
|
rm -rf $PKG/usr/lib/systemd
|
|
|
|
}
|