2012-03-17 16:41:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Minuit2 < Formula
|
|
|
|
homepage 'http://lcgapp.cern.ch/project/cls/work-packages/mathlibs/minuit/index.html'
|
|
|
|
url 'http://www.cern.ch/mathlibs/sw/5_28_00/Minuit2/Minuit2-5.28.00.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'edb79806c99501cd2cef336608135ec5def29041'
|
2012-03-17 16:41:08 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--with-pic",
|
|
|
|
"--disable-openmp",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|