mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
32 lines
810 B
Bash
32 lines
810 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')
|
|
categories=('accessories')
|
|
source=(http://sourceforge.net/projects/${_pkgname}/files/0.2/${_pkgname}-0.2.tar.gz)
|
|
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
|
|
}
|