aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-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