mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
22 lines
509 B
Ruby
22 lines
509 B
Ruby
![]() |
module UnpackStrategy
|
||
|
class Lzip
|
||
|
include UnpackStrategy
|
||
|
|
||
|
def self.can_extract?(path:, magic_number:)
|
||
|
magic_number.match?(/\ALZIP/n)
|
||
|
end
|
||
|
|
||
|
def dependencies
|
||
|
@dependencies ||= [Formula["lzip"]]
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def extract_to_dir(unpack_dir, basename:, verbose:)
|
||
|
FileUtils.cp path, unpack_dir/basename, preserve: true
|
||
|
quiet_flags = verbose ? [] : ["-q"]
|
||
|
safe_system Formula["lzip"].opt_bin/"lzip", "-d", *quiet_flags, unpack_dir/basename
|
||
|
end
|
||
|
end
|
||
|
end
|