blob: ed0e3d69d771506daab4f88f59aa23ad02a6d43b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|