homebrew-core/Formula/qrupdate.rb

29 lines
837 B
Ruby
Raw Normal View History

require 'formula'
2011-03-21 20:04:41 +00:00
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:
2012-08-30 01:42:24 +00:00
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
2012-02-22 04:48:36 +00:00
lib.mkpath
ENV.j1
system 'make install'
end
end