contrib/iperf3/Pkgfile

20 lines
438 B
Plaintext
Raw Normal View History

2018-02-26 13:45:41 +01:00
# Description: iperf3, rewrite of the original iperf
# URL: http://software.es.net/iperf/
2018-03-22 20:51:16 +01:00
# Maintainer: Pedja, predivan at mts dot rs
2018-02-26 13:45:41 +01:00
# Depends on: openssl
name=iperf3
2018-07-04 16:21:52 +02:00
version=3.6
2018-02-26 13:45:41 +01:00
release=1
source=(http://downloads.es.net/pub/iperf/iperf-$version.tar.gz)
build() {
cd iperf-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--disable-static
make
make DESTDIR=$PKG install
}