2011-01-03 13:02:51 +01:00

29 lines
881 B
Plaintext

# Description: Round corners plugin for xfce panel
# URL: http://sites.google.com/site/aquiladeus/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Hannes Mayer, kontakt at ecarux dot de
# Depends on: xfce4-panel
# Group: xfce4
name=xfce4-corner-plugin
version=1.0.1
release=5
source=(http://aur.archlinux.org/packages/$name/$name.tar.gz \
$name.c.patch)
build() {
cd $name
patch -p0 -i $SRC/$name.c.patch
gcc -std=c99 -Wall \
`pkg-config --cflags --libs libxfce4panel-1.0 libxfce4util-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 '/\[.+\]=/d' -i {} \;
}