44 lines
1.6 KiB
Ruby
44 lines
1.6 KiB
Ruby
class Hydra < Formula
|
|
desc "Network logon cracker which supports many services"
|
|
homepage "https://www.thc.org/thc-hydra/"
|
|
url "https://github.com/vanhauser-thc/thc-hydra/archive/v8.4.tar.gz"
|
|
sha256 "b478157618e602e0a8adc412efacc1c2a5d95a8f5bfb30579fbf5997469cd8b4"
|
|
head "https://github.com/vanhauser-thc/thc-hydra.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "fe923fcb9144f9582a133b2fc0245e5401ad7c334dff0f944f2c24cf30a04fe7" => :sierra
|
|
sha256 "59bd6dd57f24003146b6ae032ba699791838700180fb875c0819af07c38f2dc4" => :el_capitan
|
|
sha256 "98bd1a07373234d322a0472094d6e232703af1f8f07d1226179a827de77a48e5" => :yosemite
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on :mysql
|
|
depends_on "openssl"
|
|
depends_on "subversion" => :optional
|
|
depends_on "libidn" => :optional
|
|
depends_on "libssh" => :optional
|
|
depends_on "pcre" => :optional
|
|
depends_on "gtk+" => :optional
|
|
|
|
def install
|
|
# Dirty hack to permit linking against our OpenSSL.
|
|
# https://github.com/vanhauser-thc/thc-hydra/issues/80
|
|
inreplace "configure" do |s|
|
|
s.gsub! "/opt/local/lib", Formula["openssl"].opt_lib
|
|
s.gsub! "/opt/local/*ssl", Formula["openssl"].opt_lib
|
|
s.gsub! "/opt/*ssl/include", Formula["openssl"].opt_include
|
|
end
|
|
|
|
# Having our gcc in the PATH first can cause issues. Monitor this.
|
|
# https://github.com/vanhauser-thc/thc-hydra/issues/22
|
|
system "./configure", "--prefix=#{prefix}"
|
|
bin.mkpath
|
|
system "make", "all", "install"
|
|
share.install prefix/"man" # Put man pages in correct place
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, shell_output("#{bin}/hydra", 255)
|
|
end
|
|
end
|