aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-17 09:41:08 -0700
committerAdam Vandenberg2012-03-17 09:41:08 -0700
commitf98bb5d0ab421cbdb4047b47a432d9f38148d052 (patch)
tree83b2168da6e26aec2730c989ff407ab320401250 /Library/Formula
parent7e3287e683cb09fc138f3fe1c448adfad658ed42 (diff)
downloadhomebrew-f98bb5d0ab421cbdb4047b47a432d9f38148d052.tar.bz2
Minuit2 5.28.00
Minuit2 is a numerical function minimization library
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/minuit2.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/minuit2.rb b/Library/Formula/minuit2.rb
new file mode 100644
index 000000000..5293f93b3
--- /dev/null
+++ b/Library/Formula/minuit2.rb
@@ -0,0 +1,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