mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
28 lines
597 B
Plaintext
28 lines
597 B
Plaintext
# Description: Easily themable notification daemon with transparency effect
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: libnotify libxfce4ui xfce4-panel
|
|
|
|
name=xfce4-notifyd
|
|
version=0.4.4
|
|
release=6
|
|
source=(http://archive.xfce.org/src/apps/xfce4-notifyd/0.4/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-static \
|
|
--disable-gtk-doc \
|
|
--disable-gtk2 \
|
|
--enable-gtk3
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
}
|