mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
14 lines
262 B
Ruby
14 lines
262 B
Ruby
require "hbc/container/naked"
|
|
|
|
module Hbc
|
|
class Container
|
|
class Pkg < Naked
|
|
def self.me?(criteria)
|
|
criteria.extension(/m?pkg$/) &&
|
|
(criteria.path.directory? ||
|
|
criteria.magic_number(/^xar!/n))
|
|
end
|
|
end
|
|
end
|
|
end
|