Daiki Mizukami b2ddeecdd9
Utils::Cp: Remove copy prefix from method name
As per review feedback:

https://github.com/Homebrew/brew/pull/17373#pullrequestreview-2104523770

Co-authored-by: Mike McQuaid <mike@mikemcquaid.com>
2024-06-08 07:58:20 +09:00

37 lines
941 B
Ruby

# typed: true
# frozen_string_literal: true
require "utils/cp"
module UnpackStrategy
# Strategy for unpacking lzip archives.
class Lzip
include UnpackStrategy
sig { returns(T::Array[String]) }
def self.extensions
[".lz"]
end
def self.can_extract?(path)
path.magic_number.match?(/\ALZIP/n)
end
def dependencies
@dependencies ||= [Formula["lzip"]]
end
private
sig { override.params(unpack_dir: Pathname, basename: Pathname, verbose: T::Boolean).returns(T.untyped) }
def extract_to_dir(unpack_dir, basename:, verbose:)
Utils::Cp.with_attributes path, unpack_dir/basename
quiet_flags = verbose ? [] : ["-q"]
system_command! "lzip",
args: ["-d", *quiet_flags, unpack_dir/basename],
env: { "PATH" => PATH.new(Formula["lzip"].opt_bin, ENV.fetch("PATH")) },
verbose:
end
end
end