aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/visitors.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/visitors.rb b/Library/Formula/visitors.rb
new file mode 100644
index 000000000..312273d99
--- /dev/null
+++ b/Library/Formula/visitors.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Visitors < Formula
+ url 'http://www.hping.org/visitors/visitors-0.7.tar.gz'
+ homepage 'http://www.hping.org/visitors/'
+ md5 '32ede76af83c6b1b7d2cdc5fe5178f6d'
+
+ def install
+ system "make"
+
+ # There is no "make install", so do it manually
+ bin.install "visitors"
+ man1.install "visitors.1"
+ end
+end