xfce4-wavelan-plugin: Update to 0.5.12

Signed-off-by: Leo Unglaub <leo@leo-unglaub.net>
This commit is contained in:
Leo Unglaub 2015-03-05 02:54:48 +00:00
parent 9d303c5a3c
commit 407d2b1096
2 changed files with 27 additions and 13 deletions

View File

@ -1 +1 @@
e209f6b8b82560193f7f7fd78d8078a7 xfce4-wavelan-plugin-0.5.9.tar.bz2
3ba5ee0626612942d249d4a80a1a67b7 xfce4-wavelan-plugin-0.5.12.tar.bz2

View File

@ -5,19 +5,33 @@
# Depends on: xfce4-panel
name=xfce4-wavelan-plugin
version=0.5.9
version=0.5.12
release=1
source=(http://archive.xfce.org/src/panel-plugins/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--libexecdir=/usr/lib \
--disable-static \
--disable-debug
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/locale
find $PKG/usr/share/xfce4/panel/plugins -type f -name '*.desktop' \
-exec sed -r '/\[.+\]=/d' -i {} \;
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 {} \;
}