homebrew-core/Formula/ncrack.rb
Luke Gallagher 2aad06df27 Add ncrack 0.2ALPHA
Ncrack is a high-speed network authentication cracking tool

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-07-27 06:40:45 -07:00

14 lines
367 B
Ruby

require 'formula'
class Ncrack <Formula
url 'http://nmap.org/ncrack/dist/ncrack-0.2ALPHA.tar.gz'
homepage 'http://nmap.org/ncrack/'
md5 '611d643b76008d44ca3e9eafad11393e'
version '0.2ALPHA'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make install"
end
end