16 lines
586 B
Ruby
16 lines
586 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'
|
|
|
|
def install
|
|
# --without-openssl-header-check is necessary because Apple bumps
|
|
# openssl versions in security updates, but never updates the headers
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}", "--without-openssl-header-check"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|