contrib/mtr/Pkgfile

23 lines
429 B
Plaintext
Raw Normal View History

2015-08-05 13:48:22 +02:00
# Description: Matt's traceroute - network diagnostic tool.
2008-11-11 14:43:34 +01:00
# URL: http://www.bitwizard.nl/mtr/
2023-08-13 09:52:12 +02:00
# Maintainer: unmaintained
2015-08-05 13:48:22 +02:00
# Depends on: ncurses
2008-11-11 14:43:34 +01:00
name=mtr
2022-02-05 16:32:26 +01:00
version=0.95
release=1
source=(https://github.com/traviscross/mtr/archive/v$version/$name-v$version.tar.gz)
2008-11-11 14:43:34 +01:00
build() {
2023-08-13 09:52:12 +02:00
cd $name-$version
2015-08-05 13:48:22 +02:00
2023-08-13 09:52:12 +02:00
./bootstrap.sh
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--without-gtk
2015-08-05 13:48:22 +02:00
2023-08-13 09:52:12 +02:00
make
make DESTDIR=$PKG install
2008-11-11 14:43:34 +01:00
}