Skip to content

Instantly share code, notes, and snippets.

@bfroehle
Created March 3, 2013 00:19
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 bfroehle/5073874 to your computer and use it in GitHub Desktop.
Save bfroehle/5073874 to your computer and use it in GitHub Desktop.
ScaLAPACK Homebrew Formula
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