2008-02-05 20:20:49 +01:00

23 lines
844 B
Plaintext

# Description: Round corners plugin for 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
# Group: xfce4
name=xfce4-corner-plugin
version=1.0.1
release=4
source=(http://aur.archlinux.org/packages/$name/$name.tar.gz)
build() {
cd $name
gcc -std=c99 -Wall `pkg-config --cflags --libs libxfce4panel-1.0` \
$CFLAGS $LDFLAGS -o $name $name.c
sed 's|/usr/libexec|/usr/lib|' -i $name.desktop
install -D -m 0755 $name $PKG/usr/lib/xfce4/panel-plugins/$name
install -D -m 0644 $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 {} \;
}