blob: 8a476aa620585162641dd885c64737f2a4e9e8fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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
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'
sha1 '7f8e16ea26a0dee37ec9d1cbcef7b27692036572'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
def caveats; <<-EOS.undent
iftop requires superuser privileges. You can either run the program
via `sudo`, or change its ownership to root and set the setuid bit:
$ sudo chown root:wheel #{sbin}/iftop
$ sudo chmod u+s #{sbin}/iftop
In any case, you should be certain that you trust the software you
are executing with elevated privileges.
EOS
end
end
|