aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kühl2010-06-24 22:42:04 +0200
committerAdam Vandenberg2010-06-24 16:34:10 -0700
commit003b52193d332973b180a42fdee470aa47e8a352 (patch)
tree959521999c5a5c201217818a7b39212376d4a3f8
parent7f49265abfdc5d73a408c5e2c52d7042b450cfb1 (diff)
downloadhomebrew-003b52193d332973b180a42fdee470aa47e8a352.tar.bz2
Install manpage for formula: `dtach`.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/dtach.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/dtach.rb b/Library/Formula/dtach.rb
index 6dc57987e..be7049e29 100644
--- a/Library/Formula/dtach.rb
+++ b/Library/Formula/dtach.rb
@@ -8,10 +8,11 @@ class Dtach <Formula
def install
# Includes <config.h> instead of "config.h", so "." needs to be in the include path.
ENV.append "CFLAGS", "-I."
-
+
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
-
+
system "make"
bin.install "dtach"
+ man1.install gzip("dtach.1")
end
end