aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/requirements/maximum_macos_requirement.rb
blob: ad60af0637669f5c022ae184e879a9d501902a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require "requirement"

class MaximumMacOSRequirement < Requirement
  fatal true

  def initialize(tags)
    @version = MacOS::Version.from_symbol(tags.first)
    super
  end

  satisfy(build_env: false) { MacOS.version <= @version }

  def message
    <<-EOS.undent
      This formula either does not compile or function as expected on OS X
      versions newer than #{@version.pretty_name} due to an upstream incompatibility.
    EOS
  end
end