aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/arpoison.rb
diff options
context:
space:
mode:
authorKyle Fuller2010-01-14 20:53:13 +0000
committerAdam Vandenberg2010-01-31 11:34:34 -0800
commit12228b4d0458765ceaca686d1c96b378a0bb2e9a (patch)
tree6dea42428b3851ef24a3f1ab2e1399222ee30e19 /Library/Formula/arpoison.rb
parent64da48706d29af11f89eb725050485cecf984cf7 (diff)
downloadhomebrew-12228b4d0458765ceaca686d1c96b378a0bb2e9a.tar.bz2
New formula for arpoison
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/arpoison.rb')
-rw-r--r--Library/Formula/arpoison.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/arpoison.rb b/Library/Formula/arpoison.rb
new file mode 100644
index 000000000..44f514349
--- /dev/null
+++ b/Library/Formula/arpoison.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Arpoison <Formula
+ url 'http://www.arpoison.net/arpoison-0.6.tar.gz'
+ homepage 'http://www.arpoison.net/'
+ md5 '5274ae9c7c879b97b425a4b2da59aa65'
+
+ depends_on 'libnet'
+
+ def install
+ system "make"
+ system "mkdir #{prefix}/bin"
+ system "install arpoison #{prefix}/bin"
+ end
+end