aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/netcat.rb10
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