Skip to content

Instantly share code, notes, and snippets.

@eyliu
Created July 26, 2011 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save eyliu/1107809 to your computer and use it in GitHub Desktop.
Save eyliu/1107809 to your computer and use it in GitHub Desktop.
Homebrew formula for Harminv
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