Skip to content

Instantly share code, notes, and snippets.

@eyliu
Created July 27, 2011 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eyliu/1109658 to your computer and use it in GitHub Desktop.
Save eyliu/1109658 to your computer and use it in GitHub Desktop.
Homebrew formula for MEEP
require 'formula'
class Meep < Formula
url 'http://ab-initio.mit.edu/meep/meep-1.1.1.tar.gz'
homepage 'http://ab-initio.mit.edu/wiki/index.php/Meep'
md5 '415e0cd312b6caa22b5dd612490e1ccf'
depends_on 'harminv'
depends_on 'libctl'
depends_on 'hdf5'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment