contrib/mtr/Pkgfile
2022-02-05 18:22:10 +01:00

23 lines
443 B
Plaintext

# Description: Matt's traceroute - network diagnostic tool.
# URL: http://www.bitwizard.nl/mtr/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: ncurses
name=mtr
version=0.95
release=1
source=(https://github.com/traviscross/mtr/archive/v$version/$name-v$version.tar.gz)
build() {
cd $name-$version
./bootstrap.sh
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--without-gtk
make
make DESTDIR=$PKG install
}