Created
March 3, 2013 00:19
-
-
Save bfroehle/5073874 to your computer and use it in GitHub Desktop.
ScaLAPACK Homebrew Formula
This file contains hidden or 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 Scalapack < Formula | |
homepage 'http://www.netlib.org/scalapack/' | |
url 'http://www.netlib.org/scalapack/scalapack-2.0.2.tgz' | |
sha1 'ff9532120c2cffa79aef5e4c2f38777c6a1f3e6a' | |
option 'test', 'Verify the build with make test' | |
option 'with-openblas', "Use openblas instead of Apple's Accelerate.framework" | |
depends_on MPIDependency.new(:cc, :f90) | |
depends_on 'cmake' => :build | |
depends_on 'dotwrp' unless build.include? 'with-openblas' | |
depends_on 'homebrew/science/openblas' if build.include? 'with-openblas' | |
def install | |
ENV.fortran | |
if build.include? 'with-openblas' | |
args = std_cmake_args + [ | |
'-DBLAS_LIBRARIES=-lopenblas', | |
'-DLAPACK_LIBRARIES=-lopenblas', | |
] | |
else | |
args = std_cmake_args + [ | |
'-DBLAS_LIBRARIES=-ldotwrp -Wl,-framework -Wl,Accelerate', | |
'-DLAPACK_LIBRARIES=-ldotwrp -Wl,-framework -Wl,Accelerate', | |
] | |
end | |
mkdir "build" do | |
system 'cmake', '..', *args | |
system 'make all' | |
system 'make test' if build.include? 'test' | |
system 'make install' | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment