blob: 8835aa77ca9f5c6b9629541fa33685a11224d468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Metasploit < Formula
  url "https://www.metasploit.com/svn/framework3/trunk/", :using => :svn, :revision => "9321"
  version "3.4.0"
  homepage 'http://www.metasploit.com/framework/'
  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
  |