aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-27 20:53:58 -0800
committerAdam Vandenberg2013-01-28 21:40:07 -0800
commit1ba647ba8b1f9486afd27b43cd3fa2f8e3aad37c (patch)
treedf8830b0070e7b7d1f109c3a0e3fcdd9aac0418f /Library
parent1feac9800806770bf96397007c6dc4a0d2d79fe0 (diff)
downloadhomebrew-1ba647ba8b1f9486afd27b43cd3fa2f8e3aad37c.tar.bz2
iperf: style nits
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/iperf.rb5
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