contrib/bmon/Pkgfile

22 lines
418 B
Plaintext
Raw Normal View History

2023-08-18 21:23:43 +02:00
# Description: Network bandwidth monitor and rate estimator
# URL: https://github.com/tgraf/bmon
# Maintainer: unmaintained
2017-08-20 07:19:47 +02:00
# Depends on: ncurses libconfuse libnl
2009-01-09 09:08:00 +01:00
name=bmon
2017-08-20 07:19:47 +02:00
version=4.0
2009-01-09 09:08:00 +01:00
release=1
source=(https://github.com/tgraf/$name/archive/v$version/$name-v$version.tar.gz)
2009-01-09 09:08:00 +01:00
build() {
2023-08-18 21:23:43 +02:00
cd $name-$version
2017-08-20 07:19:47 +02:00
2023-08-18 21:23:43 +02:00
./autogen.sh
./configure --prefix=/usr
2017-08-20 07:19:47 +02:00
2023-08-18 21:23:43 +02:00
make
make DESTDIR=$PKG install
2017-08-20 07:19:47 +02:00
2023-08-18 21:23:43 +02:00
rm -r $PKG/usr/share/doc
2009-01-09 09:08:00 +01:00
}