2012-01-04 00:59:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class AdolC < Formula
|
2012-01-26 07:25:54 +00:00
|
|
|
homepage 'https://projects.coin-or.org/ADOL-C'
|
2012-06-09 10:52:10 +00:00
|
|
|
url 'http://www.coin-or.org/download/source/ADOL-C/ADOL-C-2.3.0.tgz'
|
|
|
|
sha1 'd9124ce0b199cb8b841a9a9ec10d1fb31ed11b49'
|
2012-01-04 00:59:32 +00:00
|
|
|
|
2012-01-26 07:25:54 +00:00
|
|
|
head 'https://projects.coin-or.org/svn/ADOL-C/trunk/', :using => :svn
|
|
|
|
# HEAD contains bugfix for NaNs appearing in 2.2.1
|
|
|
|
# http://answerpot.com/showthread.php?2997935-sparse_jac+return+unreasonable+NaN's
|
|
|
|
|
|
|
|
# realpath is used in configure to find colpack
|
|
|
|
depends_on 'aardvark_shell_utils' => :build
|
|
|
|
depends_on 'colpack'
|
|
|
|
|
2012-01-04 00:59:32 +00:00
|
|
|
def install
|
2012-06-09 10:52:10 +00:00
|
|
|
# Configure may get automatically regenerated. So patch configure.ac also.
|
|
|
|
inreplace %w(configure configure.ac) do |s|
|
2012-01-26 07:25:54 +00:00
|
|
|
s.gsub! "readlink -f", "realpath"
|
|
|
|
s.gsub! "lib64", "lib"
|
|
|
|
end
|
|
|
|
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--enable-sparse",
|
|
|
|
"--with-colpack=#{HOMEBREW_PREFIX}"
|
2012-01-04 00:59:32 +00:00
|
|
|
system "make install"
|
2012-01-26 07:25:54 +00:00
|
|
|
system "make test"
|
2012-01-04 00:59:32 +00:00
|
|
|
end
|
|
|
|
end
|