#Packager: George Vlahavas <vlahavas~at~gmail~dot~com>

pkgname=mate-netspeed
pkgver=1.2.0
pkgrel=1gv
source=("http://pub.mate-desktop.org/releases/1.2/mate-netspeed-1.2.0.tar.xz" "help.patch")
docs=("readme" "install" "copying" "changelog" "authors" "news" "todo")

doinst() {
# Update the scrollkeeper database (Remove stale pieces)
if [ -x usr/bin/scrollkeeper-update ]; then
	usr/bin/scrollkeeper-update > /dev/null 2>&1
fi
}

slackdesc=\
(
#|-----handy-ruler------------------------------------------------------|
"mate-netspeed (a netspeed applet for MATE)"
"Netspeed is just a little MATE-applet that shows how much traffic"
"occurs on a specified network device (for example eth0)."
)


build() {
	cd $startdir/src/$pkgname-$pkgver

	patch -p1 < $startdir/src/help.patch || exit 1

	./autogen.sh --prefix=/usr \
		--libdir=/usr/lib${LIBDIRSUFFIX} \
		--localstatedir=/var \
		--sysconfdir=/etc \
		--disable-static \
		--disable-scrollkeeper \
		--build=$arch-slackware-linux
	make -j $numjobs || return 1
	make install DESTDIR=$startdir/pkg

	# remove unnecessary help files
	for i in `ls $startdir/pkg/usr/share/mate/help/`; do
		find $startdir/pkg/usr/share/mate/help/$i/* -maxdepth 0 -type d ! -name C -exec rm -rf {} \;
	done
}