aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2012-08-03 21:35:17 +0100
committerMike McQuaid2012-08-03 21:35:17 +0100
commit1cd31e942565affb535d538f85d0c2f7bc613b5a (patch)
treecf928220dfacb5e1318c9efa9f310f066348ca08
parent106e947f3d808c466c4e5a39b445f58e8be83caf (diff)
downloadhomebrew-1cd31e942565affb535d538f85d0c2f7bc613b5a.tar.bz2
ace: update to 6.1.3 and fix Mountain Lion build.
Fixes #13817.
-rw-r--r--Library/Formula/ace.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/Library/Formula/ace.rb b/Library/Formula/ace.rb
index 2ef5f685c..7b6ec7332 100644
--- a/Library/Formula/ace.rb
+++ b/Library/Formula/ace.rb
@@ -2,8 +2,8 @@ require 'formula'
class Ace < Formula
homepage 'http://www.cse.wustl.edu/~schmidt/ACE.html'
- url 'http://download.dre.vanderbilt.edu/previous_versions/ACE-6.1.2.tar.bz2'
- sha1 'd2f22607cbb1246abd2f4b77647f37442d117a7e'
+ url 'http://download.dre.vanderbilt.edu/previous_versions/ACE-6.1.3.tar.bz2'
+ sha1 '30f593aad200204c98aef55e7093344442649d38'
def install
# ACE has two methods of compilation, "traditional" and ./configure.
@@ -21,7 +21,10 @@ class Ace < Formula
1005 => 'macosx_leopard',
1006 => 'macosx_snowleopard',
1007 => 'macosx_lion',
- 1008 => 'macosx_mountainlion' }[ver]
+ # TODO: Fix for 6.1.4.
+ # There's no Mountain Lion file yet.
+ # Reported to d.schmidt@vanderbilt.edu
+ 1008 => 'macosx_lion' }[ver]
makefile = "platform_#{name}.GNU"
header = "config-" + name.sub('_','-') + ".h"