homebrew-core/Formula/adol-c.rb
Vlad Lazar fdd6e09d29 Initial commit for Adol-c
Adol-c is a c++ library that allows automatic computations of derivatives.

Closes Homebrew/homebrew#9404.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2012-01-05 21:24:54 +00:00

14 lines
386 B
Ruby

require 'formula'
class AdolC < Formula
url 'http://www.coin-or.org/download/source/ADOL-C/ADOL-C-2.2.1.tgz'
homepage 'http://www.coin-or.org/projects/ADOL-C.xml'
md5 '5fe149865b47f77344ff910702da8b99'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end