Iperf formula.
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.
This commit is contained in:
parent
f6180cf493
commit
7e68a45958
1 changed files with 12 additions and 0 deletions
12
Formula/iperf.rb
Normal file
12
Formula/iperf.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
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
|
Loading…
Reference in a new issue