From bda1acff9f265249e79ea054c74535df5475df1e Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Wed, 7 Sep 2011 12:53:01 -0500 Subject: [PATCH] deja-gnu 1.5 and HEAD "make check" will work now, so enable it. Closes Homebrew/homebrew#7473. Signed-off-by: Jack Nagel --- Formula/deja-gnu.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Formula/deja-gnu.rb b/Formula/deja-gnu.rb index 02b5d72d06..7325109783 100644 --- a/Formula/deja-gnu.rb +++ b/Formula/deja-gnu.rb @@ -1,14 +1,17 @@ require 'formula' class DejaGnu < Formula - url 'http://mirrors.kernel.org/gnu/dejagnu/dejagnu-1.4.4.tar.gz' + url 'ftp://ftp.gnu.org/gnu/dejagnu/dejagnu-1.5.tar.gz' homepage 'http://www.gnu.org/software/dejagnu/' - md5 '053f18fd5d00873de365413cab17a666' + md5 '3df1cbca885e751e22d3ebd1ac64dc3c' + head 'git://git.sv.gnu.org/dejagnu.git' def install ENV.j1 # Or fails on Mac Pro system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}" + # DejaGnu has no compiled code, so go directly to 'make check' + system "make check" system "make install" end end