004fdcf645
In the Makefile, `FFLAGS` was being set to the value of `CFLAGS` which no longer works when the flags are being tuned for the Clang compiler. `FCFLAGS` is now used instead as it contains a copy of `CFLAGS` that has been edited for use by GFortran. Fixes Homebrew/homebrew#11119.
27 lines
823 B
Ruby
27 lines
823 B
Ruby
require 'formula'
|
|
|
|
class Qrupdate < Formula
|
|
homepage 'http://sourceforge.net/projects/qrupdate/'
|
|
url 'http://downloads.sourceforge.net/qrupdate/qrupdate-1.1.1.tar.gz'
|
|
sha1 '8fbaba202b0d4bf80852b2dc6c8d1d4b90b816d4'
|
|
|
|
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
|
|
system "make -j 1 install"
|
|
end
|
|
end
|