7e68a45958
Iperf was developed by NLANR/DAST as a modern alternative for measuring maximum TCP and UDP bandwidth performance. Iperf allows the tuning of various parameters and UDP characteristics. Iperf reports bandwidth, delay jitter, datagram loss.
12 lines
372 B
Ruby
12 lines
372 B
Ruby
require 'brewkit'
|
|
|
|
class Iperf <Formula
|
|
@url='http://downloads.sourceforge.net/project/iperf/iperf/2.0.4%20source/iperf-2.0.4.tar.gz'
|
|
@homepage='http://iperf.sourceforge.net/'
|
|
@md5='8c5bc14cc2ea55f18f22afe3c23e3dcb'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|