19 lines
374 B
Plaintext
19 lines
374 B
Plaintext
# Description: A network load monitor
|
|
# URL: http://www.wormulon.net/projects/slurm
|
|
# Maintainer: Rene Lengwinat, rugek at dirtyhack dot net
|
|
# Depends on: ncurses
|
|
|
|
name=slurm
|
|
version=0.3.3
|
|
release=1
|
|
|
|
source=(http://www.wormulon.net/files/code/slurm/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|
|
|