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-08-18 15:58:29 +00:00
|
|
|
url 'http://www.thc.org/releases/hydra-7.5.tar.gz'
|
|
|
|
sha1 '475980f8e6c0c97b7702201e89fbcf441a6fd2c0'
|
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
|