blob: fe2c9ba3b656175461b8d28b7ab91fada6659966 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
require 'formula'
class AdolC < Formula
homepage 'https://projects.coin-or.org/ADOL-C'
url 'http://www.coin-or.org/download/source/ADOL-C/ADOL-C-2.2.1.tgz'
md5 '5fe149865b47f77344ff910702da8b99'
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'
def install
inreplace "configure" do |s|
s.gsub! "readlink -f", "realpath"
s.gsub! "lib64", "lib"
end
system "./configure", "--prefix=#{prefix}",
"--enable-sparse",
"--with-colpack=#{HOMEBREW_PREFIX}"
system "make install"
system "make test"
end
end
|