aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/iftop.rb
diff options
context:
space:
mode:
authorXidorn Quan2012-09-23 15:01:14 +0800
committerAdam Vandenberg2012-09-24 08:59:04 -0700
commite7de6c5e23cdff653479556f6958bec1c723c865 (patch)
tree41e33f1f0b144122cf38502dfd2a771f15039b84 /Library/Formula/iftop.rb
parent023f2bd85be4762885a72d9ab4735cba1e090deb (diff)
downloadhomebrew-e7de6c5e23cdff653479556f6958bec1c723c865.tar.bz2
iftop 1.0pre2
Closes #15062. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/iftop.rb')
-rw-r--r--Library/Formula/iftop.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/Library/Formula/iftop.rb b/Library/Formula/iftop.rb
index b7cb0e68d..5fd9bf93a 100644
--- a/Library/Formula/iftop.rb
+++ b/Library/Formula/iftop.rb
@@ -1,13 +1,17 @@
require 'formula'
+# Version is "pre-release", but is what Debian, MacPorts, etc.
+# package, and upstream has not had any movement in a long time.
class Iftop < Formula
- url 'http://www.ex-parrot.com/~pdw/iftop/download/iftop-0.17.tar.gz'
homepage 'http://www.ex-parrot.com/~pdw/iftop/'
- sha1 '75ce6afc8c0bf851278b0a15e66f523af90cfda9'
+ url 'http://www.ex-parrot.com/pdw/iftop/download/iftop-1.0pre2.tar.gz'
+ version '1.0pre2'
+ sha1 'd4dc473f8263192334da6289b69e102a4ae7df9e'
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}", "--mandir=#{man}"
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--mandir=#{man}"
system "make install"
end
end