Skip to content
Snippets Groups Projects
Commit 00c51a24 authored by Misty De Meo's avatar Misty De Meo
Browse files

DependencyCollector: infer dep for .lzh archives

Refs Homebrew/homebrew-games#383.
parent 8444bb74
No related branches found
No related tags found
No related merge requests found
......@@ -165,6 +165,7 @@ class DependencyCollector
def parse_url_spec(url, tags)
case File.extname(url)
when ".xz" then Dependency.new("xz", tags)
when ".lha", ".lzh" then Dependency.new("lha", tags)
when ".lz" then Dependency.new("lzip", tags)
when ".rar" then Dependency.new("unrar", tags)
when ".7z" then Dependency.new("p7zip", tags)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment