blob: 7333e07c90aa048d31d330057c4eee91d2bd8286 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | require 'formula'
class Nmap <Formula
  url 'http://nmap.org/dist/nmap-5.21.tar.bz2'
  homepage 'http://nmap.org/5/'
  md5 'f77fa51d89ab27d35e5cd87bb086b858'
  def install
    fails_with_llvm
    ENV.deparallelize
    # 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"
    system "./configure", "--prefix=#{prefix}", "--without-zenmap"
    system "make" # seperate steps required otherwise the build fails
    system "make install"
  end
end
 |