brew/Library/Homebrew/requirements/unsigned_kext_requirement.rb

17 lines
431 B
Ruby
Raw Normal View History

require 'requirement'
class UnsignedKextRequirement < Requirement
fatal true
satisfy { MacOS.version < :yosemite }
def message
<<-EOS.undent
OS X Mavericks or older is required for this package.
OS X Yosemite introduced a strict unsigned kext ban which breaks this package.
You should remove this package from your system and attempt to find upstream
binaries to use instead.
EOS
end
end