aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/minuit2.rb
blob: 9642f8ba957d10ce7189c89b7a56933eb015644a (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'
  sha1 'edb79806c99501cd2cef336608135ec5def29041'

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