2010-09-17 06:50:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Hydra < Formula
|
2012-02-09 14:01:50 +00:00
|
|
|
url 'http://www.thc.org/releases/hydra-7.2-src.tar.gz'
|
2011-06-16 18:12:45 +00:00
|
|
|
homepage 'http://www.thc.org/thc-hydra/'
|
2012-02-09 14:01:50 +00:00
|
|
|
sha1 '1f31cc2ee3605b5e46edce48ec23f6065c8df7f1'
|
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"
|
|
|
|
share.install prefix+"man" # Put man pages in correct place
|
2010-09-17 06:50:32 +00:00
|
|
|
end
|
|
|
|
end
|