aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJared Townsley2010-03-18 23:38:44 -0700
committerAdam Vandenberg2010-03-19 09:57:05 -0700
commit16ab06582d5ad0eccbfd45ab36f30fdd96bbb607 (patch)
tree1922434a3af1fa1fc9a88ea2113390edd7de5e49 /Library/Formula
parentdbaa7188d62469717f5241ec391ae816fdc510b7 (diff)
downloadhomebrew-16ab06582d5ad0eccbfd45ab36f30fdd96bbb607.tar.bz2
trafshow is a ncurses based visualization of network traffic
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/trafshow.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/trafshow.rb b/Library/Formula/trafshow.rb
new file mode 100644
index 000000000..4f15fd628
--- /dev/null
+++ b/Library/Formula/trafshow.rb
@@ -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