aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/requirements/fortran_dependency.rb
blob: 9e21bc0f17c5e65cc3dc291fe4742158ac0a78cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'requirement'

class FortranDependency < Requirement
  fatal true

  default_formula 'gfortran'

  env { ENV.fortran }

  satisfy :build_env => false do
    (ENV['FC'] || which('gfortran')) ? true : false
  end
end