forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arpack.rb
40 lines (33 loc) · 1.13 KB
/
arpack.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
require 'formula'
class Arpack < Formula
homepage 'http://forge.scilab.org/index.php/p/arpack-ng'
url 'http://forge.scilab.org/index.php/p/arpack-ng/downloads/get/arpack-ng_3.1.4.tar.gz'
sha1 '1fb817346619b04d8fcdc958060cc0eab2c73c6f'
head 'git://git.forge.scilab.org/arpack-ng.git'
depends_on 'openblas' => :optional
depends_on :fortran
depends_on :mpi => [:optional, :f77]
def install
ENV.m64 if MacOS.prefer_64_bit?
args = ['--disable-dependency-tracking', "--prefix=#{libexec}"]
args << '--enable-mpi' if build.with? :mpi
if build.with? 'openblas'
['blas', 'lapack'].each do |pkg|
args << "--with-#{pkg}=-L#{Formula["openblas"].lib} -lopenblas"
end
end
ENV['MPILIBS'] = '-lmpi_usempi -lmpi_mpifh -lmpi' if build.with? :mpi
system './configure', *args
system 'make'
system 'make', 'install'
lib.install_symlink Dir["#{libexec}/lib/*"]
(libexec/'share').install 'TESTS/testA.mtx'
end
def test
cd libexec/'share' do
['dnsimp', 'bug_1323'].each do |slv|
system "#{libexec}/bin/#{slv}" # Reads testA.mtx
end
end
end
end