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-07-22 15:23:28 +00:00
|
|
|
url 'http://www.thc.org/releases/hydra-8.0.tar.gz'
|
|
|
|
sha1 'd1a705985846caf77c291461f391a43457cc76e5'
|
2010-09-17 06:50:32 +00:00
|
|
|
|
2014-07-22 15:29:46 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "b36a930ea26de765fe8b7f5c7b9b7a81006f291a" => :mavericks
|
|
|
|
sha1 "005cc151ced33f728bef85ef09d437e9482d02e9" => :mountain_lion
|
|
|
|
sha1 "0a44df2fc931a367d41d3c2147802359a9d997f7" => :lion
|
|
|
|
end
|
|
|
|
|
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
|