homebrew-core/Formula/gromacs.rb

27 lines
740 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Gromacs < Formula
homepage 'http://www.gromacs.org/'
2012-08-28 04:57:08 +00:00
url 'ftp://ftp.gromacs.org/pub/gromacs/gromacs-4.5.5.tar.gz'
sha1 'ce4b4f9a0453dd2ffea72f28ea0bc7bb7a72f479'
2012-08-28 04:57:08 +00:00
option 'enable-mpi', "Enables MPI support"
option 'enable-double',"Enables double precision"
option 'without-x', "Disable the X11 visualizer"
depends_on :x11 unless build.include? 'without-x'
2012-08-28 04:57:08 +00:00
depends_on 'fftw'
def install
args = ["--prefix=#{prefix}"]
2012-08-28 04:57:08 +00:00
args << "--enable-mpi" if build.include? 'enable-mpi'
args << "--enable-double" if build.include? 'enable-double'
args << "--without-x" if build.include? 'without-x'
system "./configure", *args
system "make"
ENV.j1
system "make install"
end
end