2009-11-18 22:16:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2012-09-23 07:01:14 +00:00
|
|
|
# Version is "pre-release", but is what Debian, MacPorts, etc.
|
|
|
|
# package, and upstream has not had any movement in a long time.
|
2011-03-10 05:11:03 +00:00
|
|
|
class Iftop < Formula
|
2009-11-18 22:16:37 +00:00
|
|
|
homepage 'http://www.ex-parrot.com/~pdw/iftop/'
|
2012-09-23 07:01:14 +00:00
|
|
|
url 'http://www.ex-parrot.com/pdw/iftop/download/iftop-1.0pre2.tar.gz'
|
|
|
|
version '1.0pre2'
|
|
|
|
sha1 'd4dc473f8263192334da6289b69e102a4ae7df9e'
|
2009-11-18 22:16:37 +00:00
|
|
|
|
|
|
|
def install
|
2012-09-23 07:01:14 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2009-11-18 22:16:37 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|