blob: 7ce1f897dfe6156ca57293bba0abc73a2353f864 (
plain)
1 # Description: Network bandwidth monitor and rate estimator.
2 # URL: https://github.com/tgraf/bmon/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: ncurses libconfuse libnl
5
6 name=bmon
7 version=4.0
8 release=1
9 source=(https://github.com/tgraf/$name/archive/v$version/$name-v$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 ./autogen.sh
15 ./configure --prefix=/usr
16
17 make
18 make DESTDIR=$PKG install
19
20 rm -r $PKG/usr/share/doc
21 }
|