homebrew-core/Formula/open-mpi.rb
Charlie Sharpsteen b0642c5afe Update Open-MPI to version 1.4.2
Some Mac-Specific issues noted in the Open-MPI changelog:

  http://www.open-mpi.org/community/lists/announce/2010/05/0037.php

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-25 18:47:33 -07:00

15 lines
471 B
Ruby

require 'formula'
class OpenMpi <Formula
url 'http://www.open-mpi.org/software/ompi/v1.4/downloads/openmpi-1.4.2.tar.gz'
homepage 'www.open-mpi.org'
md5 'e4f58c7e6792e4549424cb0420eb8655'
def install
# Compiler complains about link compatibility with FORTRAN otherwise
ENV.delete('CFLAGS')
ENV.delete('CXXFLAGS')
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end