2014-05-21 06:41:42 +00:00
|
|
|
require "formula"
|
2011-04-05 23:16:18 +00:00
|
|
|
|
|
|
|
class Ace < Formula
|
2014-05-21 06:41:42 +00:00
|
|
|
homepage "http://www.cse.wustl.edu/~schmidt/ACE.html"
|
2014-06-29 03:20:56 +00:00
|
|
|
url "http://download.dre.vanderbilt.edu/previous_versions/ACE-6.2.7.tar.bz2"
|
|
|
|
sha1 "b2be560c84d87f3bb8577caf581e519d0c76ceae"
|
2011-04-05 23:16:18 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
# ACE has two methods of compilation, "traditional" and ./configure.
|
|
|
|
# The "traditional" method has consistently given better results
|
|
|
|
# for the last 5 years, so although awkward to use on OSX, we use
|
|
|
|
# it anyway.
|
|
|
|
|
2013-10-23 11:59:23 +00:00
|
|
|
# Figure out the names of the header and makefile for this version
|
|
|
|
# of OSX and link those files to the standard names.
|
2014-05-21 06:41:42 +00:00
|
|
|
name = MacOS.cat.to_s.delete "_"
|
2013-10-23 11:59:23 +00:00
|
|
|
ln_sf "config-macosx-#{name}.h", "ace/config.h"
|
|
|
|
ln_sf "platform_macosx_#{name}.GNU", "include/makeinclude/platform_macros.GNU"
|
2011-04-05 23:16:18 +00:00
|
|
|
|
|
|
|
# Set up the environment the way ACE expects during build.
|
2014-05-21 06:41:42 +00:00
|
|
|
ENV["ACE_ROOT"] = buildpath
|
|
|
|
ENV["DYLD_LIBRARY_PATH"] = "#{buildpath}/ace:#{buildpath}/lib"
|
2011-04-05 23:16:18 +00:00
|
|
|
|
|
|
|
# Done! We go ahead and build.
|
2014-04-17 04:10:10 +00:00
|
|
|
system "make", "-C", "ace", "-f", "GNUmakefile.ACE",
|
|
|
|
"INSTALL_PREFIX=#{prefix}",
|
|
|
|
"LDFLAGS=",
|
|
|
|
"DESTDIR=",
|
|
|
|
"INST_DIR=/ace",
|
|
|
|
"debug=0",
|
|
|
|
"shared_libs=1",
|
|
|
|
"static_libs=0",
|
|
|
|
"install"
|
2011-04-05 23:16:18 +00:00
|
|
|
end
|
|
|
|
end
|