2010-09-17 06:50:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Hydra < Formula
|
2011-06-16 18:12:45 +00:00
|
|
|
homepage 'http://www.thc.org/thc-hydra/'
|
2013-02-21 06:15:23 +00:00
|
|
|
url 'http://www.thc.org/releases/hydra-7.4.2.tar.gz'
|
|
|
|
sha1 '19bf40ef7d1e8b1da55d9696b3cdcc2769557904'
|
2010-09-17 06:50:32 +00:00
|
|
|
|
|
|
|
def install
|
2011-06-16 18:12:45 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2010-09-17 06:50:32 +00:00
|
|
|
bin.mkpath
|
2011-06-16 18:12:45 +00:00
|
|
|
system "make all install"
|
2012-08-30 04:50:42 +00:00
|
|
|
share.install prefix/"man" # Put man pages in correct place
|
2010-09-17 06:50:32 +00:00
|
|
|
end
|
|
|
|
end
|