aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-03 22:37:48 -0700
committerAdam Vandenberg2010-07-03 22:37:48 -0700
commit87c239de69adf3d3e68b12be3d526f0c2d9a1e60 (patch)
treed7d19695d172c3b8e5af58ff4cf82679b6e4b837 /Library/Formula
parentc33c74bf4ac6c32665d3548489130c8f540da55e (diff)
downloadhomebrew-87c239de69adf3d3e68b12be3d526f0c2d9a1e60.tar.bz2
nmap - tighten up formula
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/nmap.rb12
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