homebrew-core/Formula/nmap.rb
Luke Gallagher 6d54954bac Update nmap 5.35DC1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-09 08:47:46 -07:00

17 lines
413 B
Ruby

require 'formula'
class Nmap <Formula
url 'http://nmap.org/dist/nmap-5.35DC1.tar.bz2'
homepage 'http://nmap.org/5/'
md5 '5bc2f8629f26716aa78d4bfe474a5d3a'
version '5.35DC1'
def install
fails_with_llvm
ENV.deparallelize
system "./configure", "--prefix=#{prefix}", "--without-zenmap"
system "make" # seperate steps required otherwise the build fails
system "make install"
end
end