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