# Maintainer: Alexis Janon # Contributor: Kyle Keen # Contributor: Zhukov Pavel # Contributor: Christof Musik # Contributor: Falconindy pkgname=slurm pkgver=0.4.3 pkgrel=1 pkgdesc="Monitoring traffic statistics in realtime" url="https://github.com/mattthias/slurm/wiki" license=("GPL") arch=('i686' 'x86_64') depends=('ncurses') makedepends=('cmake') source=("https://github.com/mattthias/$pkgname/archive/upstream/$pkgver.tar.gz") md5sums=('ff39b8e1fd31274ba1bb36d4aadc1d48') build() { cd "$srcdir/$pkgname-upstream-$pkgver" mkdir -p build cd build cmake -DCMAKE_INSTALL_PREFIX=/usr .. make } package() { cd "$srcdir/$pkgname-upstream-$pkgver/build" make DESTDIR="$pkgdir" install install -Dm644 ../slurm.1 "$pkgdir/usr/share/man/man1/slurm.1" }