mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
14 lines
261 B
Ruby
14 lines
261 B
Ruby
require "hbc/container/generic_unar"
|
|
|
|
module Hbc
|
|
class Container
|
|
class SevenZip < GenericUnar
|
|
def self.me?(criteria)
|
|
# TODO: cover self-extracting archives
|
|
criteria.magic_number(/^7z/n) &&
|
|
super
|
|
end
|
|
end
|
|
end
|
|
end
|