20 lines
498 B
Ruby
Raw Normal View History

module UnpackStrategy
class Cab
include UnpackStrategy
def self.can_extract?(path:, magic_number:)
2018-07-27 00:54:31 +02:00
magic_number.match?(/\AMSCF/n)
end
def extract_to_dir(unpack_dir, basename:, verbose:)
system_command! "cabextract",
args: ["-d", unpack_dir, "--", path],
env: { "PATH" => PATH.new(Formula["cabextract"].opt_bin, ENV["PATH"]) }
end
def dependencies
@dependencies ||= [Formula["cabextract"]]
end
end
end