desktop/kdeplasma-applets-netspeed/PKGBUILD
2011-05-12 17:33:55 +00:00

31 lines
798 B
Bash

# Maintainer: Neo Kolokotronis <tetris4@gmail.com>
pkgname=kdeplasma-applets-netspeed
_pkgname=netspeed-plasma
pkgver=0.2
pkgrel=1
pkgdesc="Simple plasmoid to show the current speed of a network interface, and to show the overall statistics"
arch=('i686' 'x86_64')
license=('CCPL:cc-by-sa')
url="http://kde-look.org/content/show.php/Fushigi?content=137517"
depends=('kdelibs' 'kdebase-workspace')
source=(http://sourceforge.net/projects/netspeed-plasma/files/0.2/netspeed-plasma-0.2.tar.gz/download)
md5sums='ea165c8bcc11cc70495b23c91c161cc9'
build() {
cd $srcdir
mkdir -p build
cd build
cmake ../$_pkgname-$pkgver \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd $srcdir
cd build
make DESTDIR=${pkgdir} install
}