aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/requirements/maximum_macos_requirement.rb
blob: ceaa5184bce0a1b0c4af45347741646c0069c0f0 (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 macOS
      versions newer than #{@version.pretty_name} due to an upstream incompatibility.
    EOS
  end
end