aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-04-23 21:36:25 -0700
committerAdam Vandenberg2012-04-23 21:36:25 -0700
commit09b3ad368db53107ee2318cb85211d07e56ce77f (patch)
tree58eee5dfca2be18a3e686afcce593f919774fe1a /Library
parent717a1a48cbc98961b362b2f1b3ea33d48b5e6ae3 (diff)
downloadhomebrew-09b3ad368db53107ee2318cb85211d07e56ce77f.tar.bz2
Ace 6.1.1
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ace.rb16
1 files changed, 10 insertions, 6 deletions
diff --git a/Library/Formula/ace.rb b/Library/Formula/ace.rb
index 9b1bbc0c5..d4c2f32f7 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.0.3.tar.bz2'
- md5 'c38cff517ee80825a37f3b1e84f15229'
+ url 'http://download.dre.vanderbilt.edu/previous_versions/ACE-6.1.1.tar.bz2'
+ md5 'f3ddd96823ebada5a52a9e23f26560bb'
def install
# ACE has two methods of compilation, "traditional" and ./configure.
@@ -15,10 +15,13 @@ class Ace < Formula
# for this version of OSX.
ver = %x[sw_vers -productVersion].chomp.split(".")
ver = ver.slice(0).to_i*100 + ver.slice(1).to_i
- name = { 1002 => 'macosx', 1003 => 'macosx_panther',
- 1004 => 'macosx_tiger', 1005 => 'macosx_leopard',
+ name = { 1002 => 'macosx',
+ 1003 => 'macosx_panther',
+ 1004 => 'macosx_tiger',
+ 1005 => 'macosx_leopard',
1006 => 'macosx_snowleopard',
- 1007 => 'macosx_lion' }[ver]
+ 1007 => 'macosx_lion',
+ 1008 => 'macosx_mountainlion' }[ver]
makefile = "platform_#{name}.GNU"
header = "config-" + name.sub('_','-') + ".h"
@@ -38,7 +41,8 @@ class Ace < Formula
"DESTDIR=",
"INST_DIR=/ace",
"debug=0",
- "shared_libs=1", "static_libs=0",
+ "shared_libs=1",
+ "static_libs=0",
"install"
end
end