homebrew-core/Formula/metasploit.rb

16 lines
488 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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
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