homebrew-core/Formula/nmap.rb

17 lines
390 B
Ruby
Raw Normal View History

require 'formula'
class Nmap <Formula
url 'http://nmap.org/dist/nmap-5.50.tar.bz2'
2010-07-04 05:37:48 +00:00
homepage 'http://nmap.org/5/'
md5 'a4df96e52cb52a1bbe76caace5f21388'
def install
fails_with_llvm
2009-12-28 19:12:45 +00:00
ENV.deparallelize
2010-07-04 05:37:48 +00:00
system "./configure", "--prefix=#{prefix}", "--without-zenmap"
system "make" # seperate steps required otherwise the build fails
system "make install"
end
end