aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/deja-gnu.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/Library/Formula/deja-gnu.rb b/Library/Formula/deja-gnu.rb
index 02b5d72d0..732510978 100644
--- a/Library/Formula/deja-gnu.rb
+++ b/Library/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