Add support for 7zip archives

Closes Homebrew/homebrew#15723.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Sijawusz Pur Rahnama 2012-10-28 19:29:24 +01:00 committed by Jack Nagel
parent 376fa59901
commit 32b1d46c96
2 changed files with 4 additions and 0 deletions

View File

@ -98,6 +98,9 @@ class CurlDownloadStrategy < AbstractDownloadStrategy
when :rar
raise "You must install unrar: brew install unrar" unless which "unrar"
quiet_safe_system 'unrar', 'x', {:quiet_flag => '-inul'}, @tarball_path
when :p7zip
raise "You must install 7zip: brew install p7zip" unless which "7zr"
safe_system '7zr', 'x', @tarball_path
else
# we are assuming it is not an archive, use original filename
# this behaviour is due to ScriptFileFormula expectations

View File

@ -194,6 +194,7 @@ class Pathname
case extname
when ".tar.gz", ".tgz", ".tar.bz2", ".tbz" then :tar
when ".zip" then :zip
when ".7z" then :p7zip
end
end
end