18 lines
321 B
Ruby
18 lines
321 B
Ruby
module UnpackStrategy
|
|
class Xar
|
|
include UnpackStrategy
|
|
|
|
using Magic
|
|
|
|
def self.can_extract?(path)
|
|
path.magic_number.match?(/\Axar!/n)
|
|
end
|
|
|
|
private
|
|
|
|
def extract_to_dir(unpack_dir, basename:, verbose:)
|
|
system_command! "xar", args: ["-x", "-f", path, "-C", unpack_dir]
|
|
end
|
|
end
|
|
end
|