diff options
| author | Adam Vandenberg | 2010-07-03 22:37:48 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-07-03 22:37:48 -0700 |
| commit | 87c239de69adf3d3e68b12be3d526f0c2d9a1e60 (patch) | |
| tree | d7d19695d172c3b8e5af58ff4cf82679b6e4b837 /Library/Formula | |
| parent | c33c74bf4ac6c32665d3548489130c8f540da55e (diff) | |
| download | homebrew-87c239de69adf3d3e68b12be3d526f0c2d9a1e60.tar.bz2 | |
nmap - tighten up formula
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/nmap.rb | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Library/Formula/nmap.rb b/Library/Formula/nmap.rb index e220a4edc..754e364fe 100644 --- a/Library/Formula/nmap.rb +++ b/Library/Formula/nmap.rb @@ -1,18 +1,16 @@ require 'formula' class Nmap <Formula - @url='http://nmap.org/dist/nmap-5.21.tar.bz2' - @homepage='http://nmap.org/5/' - @md5='f77fa51d89ab27d35e5cd87bb086b858' + url 'http://nmap.org/dist/nmap-5.21.tar.bz2' + homepage 'http://nmap.org/5/' + md5 'f77fa51d89ab27d35e5cd87bb086b858' def install fails_with_llvm ENV.deparallelize - system "./configure", "--prefix=#{prefix}", - "--without-zenmap" - + + system "./configure", "--prefix=#{prefix}", "--without-zenmap" system "make" system "make install" # seperate steps required otherwise the build fails end - end |
