mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
30 lines
670 B
Ruby
30 lines
670 B
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
module UnpackStrategy
|
|
# Strategy for unpacking xar archives.
|
|
class Xar
|
|
extend T::Sig
|
|
|
|
include UnpackStrategy
|
|
|
|
sig { returns(T::Array[String]) }
|
|
def self.extensions
|
|
[".xar"]
|
|
end
|
|
|
|
def self.can_extract?(path)
|
|
path.magic_number.match?(/\Axar!/n)
|
|
end
|
|
|
|
private
|
|
|
|
sig { override.params(unpack_dir: Pathname, basename: Pathname, verbose: T::Boolean).returns(T.untyped) }
|
|
def extract_to_dir(unpack_dir, basename:, verbose:)
|
|
system_command! "xar",
|
|
args: ["-x", "-f", path, "-C", unpack_dir],
|
|
verbose: verbose
|
|
end
|
|
end
|
|
end
|