homebrew-core/Formula/iftop.rb

23 lines
820 B
Ruby

# 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
desc "Display an interface's bandwidth usage"
homepage "http://www.ex-parrot.com/~pdw/iftop/"
url "http://www.ex-parrot.com/pdw/iftop/download/iftop-1.0pre4.tar.gz"
version "1.0pre4"
sha256 "f733eeea371a7577f8fe353d86dd88d16f5b2a2e702bd96f5ffb2c197d9b4f97"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make", "install"
end
def caveats; <<-EOS.undent
iftop requires root privileges so you will need to run `sudo iftop`.
You should be certain that you trust any software you grant root privileges.
EOS
end
end