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:
Dan Sully 2009-09-24 06:12:36 -07:00 committed by Max Howell
parent f6180cf493
commit 7e68a45958

12
Formula/iperf.rb Normal file
View 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