Add ncrack 0.2ALPHA

Ncrack is a high-speed network authentication cracking tool

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Luke Gallagher 2010-07-27 18:29:58 +10:00 committed by Adam Vandenberg
parent 479a8f71ad
commit 2aad06df27

14
Formula/ncrack.rb Normal file
View file

@ -0,0 +1,14 @@
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