mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
716 B
Bash
22 lines
716 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
#Contributor : Todd Maynard <arch@toddmaynard.com>
|
|
|
|
pkgname=knetdockapp
|
|
pkgver=0.82.3
|
|
pkgrel=1
|
|
pkgdesc="KDE systray app that monitors the activity of network interfaces and the link status."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.kde-apps.org/content/show.php?content=29398"
|
|
license=('GPL')
|
|
depends=(kdelibs3)
|
|
source=(http://www.kde-apps.org/CONTENT/content-files/29398-knetdockapp-$pkgver.tar.bz2)
|
|
md5sums=('701db6bf6ad966609162b598dd09aaaf')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
# ./autogen.sh
|
|
./configure --prefix=/opt/kde --without-arts
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|