Update dtach to use new inreplace.

This commit is contained in:
Adam Vandenberg 2009-12-17 12:42:26 -08:00 committed by Max Howell
parent e8a41c5210
commit a65a359aaa

View file

@ -2,20 +2,19 @@ require 'formula'
class Dtach <Formula
url 'http://downloads.sourceforge.net/project/dtach/dtach/0.8/dtach-0.8.tar.gz'
homepage 'http://dtach.sourceforge.net/'
md5 'ec5999f3b6bb67da19754fcb2e5221f3'
homepage 'http://dtach.sourceforge.net/'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
# Does #include <config.h> instead of #include "config.h"
# so it needs . in the include path.
# Includes <config.h> instead of "config.h", so "." needs to be in the include path.
ENV.append "CFLAGS", "-I."
# Use our own flags, thanks.
inreplace "Makefile", /^CC = .*$/, ""
inreplace "Makefile", /^CFLAGS = .*$/, ""
inreplace "Makefile", /^LIBS = .*$/, ""
inreplace "Makefile" do |f|
# Use our own flags, thanks.
%w[CC CFLAGS LIBS].each { |flag| f.gsub_make_var! flag, "" }
end
system "make"
bin.install "dtach"