aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSean Nicolay2010-06-16 21:20:37 -0500
committerAdam Vandenberg2010-06-23 09:19:19 -0700
commit33aa2853c559f6e1e54227d1b24276757f1ae166 (patch)
tree7f55b5826ceaa5e6e9b7096a98b7af4d7d891d75 /Library
parente99a8c1f52421b639913475f14fd5c621c6b763b (diff)
downloadhomebrew-33aa2853c559f6e1e54227d1b24276757f1ae166.tar.bz2
Metasploit 3.4.0
* Use a SVN checkout for Metasploit. The Metasploit tarballs are loaded with .svn folders which we would have to delete anyway, so use a Subversion checkout and tagged release.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/metasploit.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/metasploit.rb b/Library/Formula/metasploit.rb
new file mode 100644
index 000000000..899c891c5
--- /dev/null
+++ b/Library/Formula/metasploit.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Metasploit <Formula
+ head "https://www.metasploit.com/svn/framework3/trunk/", :using => :svn, :revision => "9321"
+ version "3.4.0"
+ homepage 'http://www.metasploit.com/framework/'
+ md5 ''
+
+ def install
+ libexec.install Dir["msf*",'data','external','lib','modules','plugins','scripts','test','tools']
+ bin.mkpath
+ Dir["#{libexec}/msf*"].each {|f| ln_s f, bin}
+ end
+end