mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
19 lines
345 B
Ruby
19 lines
345 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "uncompressed"
|
|
|
|
module UnpackStrategy
|
|
class Pkg < Uncompressed
|
|
using Magic
|
|
|
|
def self.extensions
|
|
[".pkg", ".mkpg"]
|
|
end
|
|
|
|
def self.can_extract?(path)
|
|
path.extname.match?(/\A.m?pkg\Z/) &&
|
|
(path.directory? || path.magic_number.match?(/\Axar!/n))
|
|
end
|
|
end
|
|
end
|