aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAustin Seipp2012-09-23 20:59:14 -0500
committerAdam Vandenberg2012-09-25 06:40:24 -0700
commit2c883677a808b4523f47c88498c77197c28610c2 (patch)
tree1275b3d3b9b91ef73255e4319129778763ffb1bf /Library
parent6fea940929dcb6f34fe9f5568e445cdb7b8e0f17 (diff)
downloadhomebrew-2c883677a808b4523f47c88498c77197c28610c2.tar.bz2
Ur/Web 20120925
Closes #15099. Signed-off-by: Austin Seipp <mad.one@gmail.com> Closes #15099. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/urweb.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/Library/Formula/urweb.rb b/Library/Formula/urweb.rb
index 1f51c7421..97fde681b 100644
--- a/Library/Formula/urweb.rb
+++ b/Library/Formula/urweb.rb
@@ -2,16 +2,19 @@ require 'formula'
class Urweb < Formula
homepage 'http://impredicative.com/ur/'
- url 'http://impredicative.com/ur/urweb-20120807.tgz'
- sha1 '81c4a8095b2c6bb0f6779dd242270750f59627cf'
+ url 'http://impredicative.com/ur/urweb-20120925.tgz'
+ sha1 'd68c1746a00d6c1fa847edf4130e89d15522be8e'
head 'http://hg.impredicative.com/urweb', :using => :hg
depends_on :automake
depends_on :libtool
-
depends_on 'mlton'
def install
+ # The autoconf-generated shell scripts in the tarball
+ # are out of sync with our dependencies and force odd
+ # reconfigures and failures when running 'make.' It's better
+ # to just regenerate them and go for it.
system "aclocal"
system "autoreconf -i --force"
system "./configure", "--prefix=#{prefix}"