88779ade49
Closes Homebrew/homebrew#14653.
15 lines
502 B
Ruby
15 lines
502 B
Ruby
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'
|
|
sha1 'edb79806c99501cd2cef336608135ec5def29041'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--with-pic",
|
|
"--disable-openmp",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|