26 lines
992 B
Plaintext
26 lines
992 B
Plaintext
# Description: Macmenu plugin for the xfce panel
|
|
# URL: http://aur.archlinux.org/packages.php?do_Details=1&ID=7127
|
|
# Maintainer: Jose V Beneyto, sepen at users dot sourceforge dot net
|
|
# Packager: Hannes Mayer, kontakt at ecarux dot de
|
|
# Depends on: xfce4-panel,libwnck
|
|
# Group: xfce4
|
|
|
|
name=xfce4-macmenu-plugin
|
|
version=1.0.15
|
|
release=2
|
|
source=(http://aur.archlinux.org/packages/$name/$name.tar.gz)
|
|
|
|
build() {
|
|
cd $name
|
|
patch -NRp0 < macmenu-applet.patch
|
|
patch -NRp0 < xfce-plugin-desktop.patch
|
|
gcc -std=gnu99 -Wall -fno-strict-aliasing -DFOR_XFCE \
|
|
`pkg-config --cflags --libs libwnck-1.0 libxfce4panel-1.0` \
|
|
$CFLAGS $LDFLAGS -o $name macmenu-applet.c
|
|
sed 's|/usr/lib/xfce4|/usr/lib|' -i $name.desktop
|
|
install -D -m 0755 $name $PKG/usr/lib/xfce4/panel-plugins/$name
|
|
install -D -m 0655 $name.desktop $PKG/usr/share/xfce4/panel-plugins/$name.desktop
|
|
find $PKG/usr/share/xfce4/panel-plugins -type f -name '*.desktop' \
|
|
-exec sed -r '/^(Comment|Name)\[/d' -i {} \;
|
|
}
|