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/'
|
2014-01-12 20:56:50 +00:00
|
|
|
url 'http://www.thc.org/releases/hydra-7.6.tar.gz'
|
|
|
|
sha1 '7df230bb4f228a5cdc776ef1a215a1523b58f40b'
|
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
|