homebrew-core/Formula/ncrack.rb
Dominyk Tiller a2bafa27f8 openssl: disable SSLv2 support.
Kills ssl2 from OpenSSL. This PR relates to Homebrew/homebrew#31745. Force recompiles
everything that relies on OpenSSL from the master branch to enforce the
new OpenSSL no-ssl2 rule.
2014-08-24 17:13:48 +01:00

18 lines
471 B
Ruby

require 'formula'
class Ncrack < Formula
homepage 'http://nmap.org/ncrack/'
url 'http://nmap.org/ncrack/dist/ncrack-0.4ALPHA.tar.gz'
sha256 'f8bd7e0ef68559490064ec0a5f139b2b9c49aeaf9f6323e080db9ff344c87603'
revision 1
depends_on "openssl"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end