blob: aea99b992635d81cdf050307d4ac1db7f8d1c7c8 (
plain)
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
|
require 'formula'
class Qrupdate < Formula
homepage 'http://sourceforge.net/projects/qrupdate/'
url 'http://downloads.sourceforge.net/qrupdate/qrupdate-1.1.2.tar.gz'
sha1 'f7403b646ace20f4a2b080b4933a1e9152fac526'
depends_on 'dotwrp'
def install
ENV.fortran
ENV['PREFIX'] = prefix
inreplace 'Makeconf' do |s|
# as per the caveats in the gfortran formula:
s.gsub! /^(FC=).*/, "\\1#{HOMEBREW_PREFIX}/bin/gfortran"
s.gsub! /^(FFLAGS=).*/, "\\1#{ENV['FCFLAGS']}"
s.gsub! /^(BLAS=).*/, "\\1#{ENV["LDFLAGS"]} -ldotwrp -framework Accelerate"
s.gsub! /^(LAPACK=).*/, "\\1#{ENV["LDFLAGS"]} -ldotwrp -framework Accelerate"
end
cd "./src"
inreplace 'Makefile' do |s|
s.gsub! 'install -D', 'install'
end
lib.mkpath
ENV.j1
system 'make install'
end
end
|