mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
16 lines
303 B
Ruby
16 lines
303 B
Ruby
![]() |
module UnpackStrategy
|
||
|
class Xar
|
||
|
include UnpackStrategy
|
||
|
|
||
|
def self.can_extract?(path:, magic_number:)
|
||
|
magic_number.match?(/\Axar!/n)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def extract_to_dir(unpack_dir, basename:, verbose:)
|
||
|
safe_system "xar", "-x", "-f", path, "-C", unpack_dir
|
||
|
end
|
||
|
end
|
||
|
end
|