homebrew-core/Formula/nmap.rb

23 lines
605 B
Ruby
Raw Normal View History

require 'formula'
class Nmap <Formula
2010-07-04 05:37:48 +00:00
url 'http://nmap.org/dist/nmap-5.21.tar.bz2'
homepage 'http://nmap.org/5/'
md5 'f77fa51d89ab27d35e5cd87bb086b858'
def install
fails_with_llvm
2009-12-28 19:12:45 +00:00
ENV.deparallelize
2010-07-04 05:37:48 +00:00
# There are reports that this is needed for sudo. See:
# http://github.com/mxcl/homebrew/issues/issue/1270
ENV['CFLAGS'] = "-m32 -O2"
ENV['LDFLAGS'] = "-m32 -O2"
ENV['CXXFLAGS'] = "-m32 -O2"
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