2014-05-19 02:16:30 +00:00
|
|
|
require "formula"
|
2013-12-05 02:25:32 +00:00
|
|
|
|
|
|
|
class Iperf3 < Formula
|
2014-05-19 02:16:30 +00:00
|
|
|
homepage "https://github.com/esnet/iperf"
|
2014-10-17 04:45:34 +00:00
|
|
|
|
|
|
|
stable do
|
|
|
|
url "https://github.com/esnet/iperf/archive/3.0.9.tar.gz"
|
|
|
|
sha256 "985d87e2bc3f302dd5e864022f61b053cdeafd2e6a325711a317ed6aa1b68771"
|
|
|
|
|
|
|
|
# Remove this with next stable release please! Fixed in HEAD.
|
|
|
|
depends_on MaximumMacOSRequirement => :mavericks
|
|
|
|
end
|
|
|
|
|
|
|
|
head do
|
|
|
|
url "https://github.com/esnet/iperf.git"
|
|
|
|
|
|
|
|
depends_on "libtool" => :build
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "autoconf" => :build
|
|
|
|
end
|
2013-12-05 02:25:32 +00:00
|
|
|
|
2014-03-26 17:10:53 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2014-10-17 05:09:38 +00:00
|
|
|
sha1 "32203dbcebb819a713d4e49fffc0b8e20bbec0ae" => :mavericks
|
|
|
|
sha1 "9be1ed65f8e43db6fd9d8c15cb0248d74a1a0459" => :mountain_lion
|
|
|
|
sha1 "92b9c81eba28fa0549c45d81162bc58561016163" => :lion
|
2014-03-26 17:10:53 +00:00
|
|
|
end
|
|
|
|
|
2013-12-05 02:25:32 +00:00
|
|
|
def install
|
2014-10-17 04:45:34 +00:00
|
|
|
system "./bootstrap.sh" if build.head?
|
2014-05-31 23:12:45 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2013-12-05 02:25:32 +00:00
|
|
|
system "make", "clean" # there are pre-compiled files in the tarball
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/iperf3", "--version"
|
|
|
|
end
|
|
|
|
end
|