2013-06-23 18:35:20 -07:00
|
|
|
require 'requirement'
|
|
|
|
|
2013-06-25 21:08:59 -05:00
|
|
|
class FortranDependency < Requirement
|
2013-06-23 18:35:20 -07:00
|
|
|
fatal true
|
|
|
|
|
2014-05-15 21:03:12 +01:00
|
|
|
default_formula 'gcc'
|
2013-06-23 18:35:20 -07:00
|
|
|
|
|
|
|
env { ENV.fortran }
|
|
|
|
|
|
|
|
satisfy :build_env => false do
|
|
|
|
(ENV['FC'] || which('gfortran')) ? true : false
|
|
|
|
end
|
|
|
|
end
|