Created
July 26, 2011 19:49
-
-
Save eyliu/1107809 to your computer and use it in GitHub Desktop.
Homebrew formula for Harminv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Harminv < Formula | |
url 'http://ab-initio.mit.edu/harminv/harminv-1.3.1.tar.gz' | |
homepage 'http://ab-initio.mit.edu/wiki/index.php/Harminv' | |
md5 'd3f49f1c90856b3b2e8b77dc4a99c37a' | |
def install | |
ENV.fortran | |
system "./configure", "--disable-debug", "--disable-dependency-tracking", | |
"--prefix=#{prefix}", | |
"--mandir=#{man}", | |
"--with-blas=-framework Accelerate" | |
system "make install" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment