aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/iftop.rb
blob: 55bf090b373d25e4aafb1d78dabd85d60f0271bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

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/'
  md5 '062bc8fb3856580319857326e0b8752d'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end