aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/minuit2.rb
blob: 5293f93b3521089aa2010a7ccb60cf39df7ccb1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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'
  md5 '536a1d29e5cc9bd4499d17d665021370'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--with-pic",
                          "--disable-openmp",
                          "--prefix=#{prefix}"
    system "make install"
  end
end