trafshow is a ncurses based visualization of network traffic

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Jared Townsley 2010-03-18 23:38:44 -07:00 committed by Adam Vandenberg
parent 4d05dd8645
commit 5d189a989a
1 changed files with 14 additions and 0 deletions

14
Formula/trafshow.rb Normal file
View File

@ -0,0 +1,14 @@
require 'formula'
class Trafshow <Formula
url 'ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/trafshow-4.0.tgz'
homepage 'http://soft.risp.ru/trafshow/index_en.shtml'
md5 '994355d6ba98d96ce06db9c92ae41669'
def install
system "./configure", "osx", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make"
bin.install "trafshow"
man1.install "trafshow.1"
end
end