diff options
| author | Adam Vandenberg | 2013-01-27 22:07:40 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-28 21:40:22 -0800 |
| commit | 6e8d430ba4d2c9ba22022b7a884a0aecf81bd6fa (patch) | |
| tree | fc09d022bde2a9e277291a6e8d2924fe55407308 /Library | |
| parent | ec2a792d8b945dd3f0bb42795873f0cb317fe59e (diff) | |
| download | homebrew-6e8d430ba4d2c9ba22022b7a884a0aecf81bd6fa.tar.bz2 | |
netcat: style nits
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/netcat.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/netcat.rb b/Library/Formula/netcat.rb index 50a8859a3..3f254af1d 100644 --- a/Library/Formula/netcat.rb +++ b/Library/Formula/netcat.rb @@ -1,16 +1,16 @@ require 'formula' class Netcat < Formula + homepage 'http://netcat.sourceforge.net/' url 'http://downloads.sourceforge.net/sourceforge/netcat/netcat-0.7.1.tar.bz2' sha1 'b761d70fe9e3e8b3fe33a329b9bc31300dc04d11' - homepage 'http://netcat.sourceforge.net/' def install - system "./configure", "--prefix=#{prefix}", + system "./configure", "--disable-debug", + "--disable-dependency-tracking", + "--prefix=#{prefix}", "--mandir=#{man}", - "--infodir=#{info}", - "--disable-debug", - "--disable-dependency-tracking" + "--infodir=#{info}" system "make install" end end |
