38 lines
891 B
Plaintext
Raw Normal View History

2008-07-23 15:44:03 +02:00
# Description: plugin is used to display stats from a wireless lan interface
# URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-wavelan-plugin
2015-03-03 02:03:03 +00:00
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
2008-07-23 15:44:03 +02:00
# Packager: Ricardo Oliveira, crux at roliveira dot eu
# Depends on: xfce4-panel
name=xfce4-wavelan-plugin
version=0.5.12
2008-07-23 15:44:03 +02:00
release=1
2010-12-17 12:15:25 +01:00
source=(http://archive.xfce.org/src/panel-plugins/$name/${version%.*}/$name-$version.tar.bz2)
2008-07-23 15:44:03 +02:00
build ()
{
# go into the source directory
cd $SRC/$name-$version
# configure the plugin
./configure \
--prefix=/usr \
--libexecdir=/usr/lib \
--disable-static \
--disable-debug \
--disable-nls \
--disable-dependency-tracking \
# make the plugin
make
make DESTDIR=$PKG install
# cleanup time
rm -rf $PKG/usr/share/locale
find $PKG/usr/share/xfce4/panel/plugins -type f -name '*.desktop' \
-exec sed -r '/\[.+\]=/d' -i {} \;
2008-07-23 15:44:03 +02:00
}