diff options
| author | Adam Vandenberg | 2013-01-27 20:53:58 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-28 21:40:07 -0800 |
| commit | 1ba647ba8b1f9486afd27b43cd3fa2f8e3aad37c (patch) | |
| tree | df8830b0070e7b7d1f109c3a0e3fcdd9aac0418f /Library/Formula/iperf.rb | |
| parent | 1feac9800806770bf96397007c6dc4a0d2d79fe0 (diff) | |
| download | homebrew-1ba647ba8b1f9486afd27b43cd3fa2f8e3aad37c.tar.bz2 | |
iperf: style nits
Diffstat (limited to 'Library/Formula/iperf.rb')
| -rw-r--r-- | Library/Formula/iperf.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/iperf.rb b/Library/Formula/iperf.rb index 2009c30ed..5abd59d29 100644 --- a/Library/Formula/iperf.rb +++ b/Library/Formula/iperf.rb @@ -1,12 +1,13 @@ require 'formula' class Iperf < Formula - url 'http://downloads.sourceforge.net/project/iperf/iperf-2.0.5.tar.gz' homepage 'http://iperf.sourceforge.net/' + url 'http://downloads.sourceforge.net/project/iperf/iperf-2.0.5.tar.gz' sha1 '7302792dcb1bd7aeba032fef6d3dcc310e4d113f' def install - system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" system "make install" end end |
