blob: 589b8c659b770ecf3a1f19f02125b5cebd562dc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
require 'formula'
class Metasploit < Formula
url "http://updates.metasploit.com/data/releases/framework-3.7.1.tar.bz2"
homepage 'http://www.metasploit.com/framework/'
sha1 '9a104bcacc8ecf683f5df16613da19076c81413c'
head "https://www.metasploit.com/svn/framework3/trunk/", :using => :svn
# Metasploit's tarball comes with a full .svn checkout.
# Don't clean these folders, so users can "svn up" to update
# metasploit in-place, which apparently is standard for this project.
skip_clean :all
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
def caveats; <<-EOS.undent
Metasploit can be updated in-place by doing:
cd `brew --prefix metasploit`/libexec/
svn up
EOS
end
end
|