tools: Added unrar for rar archive files.

This commit is contained in:
Andrew Hamilton 2018-06-04 08:27:34 +10:00
parent ea992a3b2d
commit a783abbf32
2 changed files with 9 additions and 1 deletions

View file

@ -21,6 +21,7 @@ tools_for_extensions = [
[["zip", "jar", "apk"], ["zipinfo"]],
[["tar.gz", "tgz"],["tar_gz"]],
[["tar.bz2"], ["tar_bz2"]],
[["rar"], ["unrar"]],
[["a", "so"], ["nm"]],
[["png", "jpg", "gif", "bmp", "ppm", "tiff", "tga"], ["identify", "pil",
"pil_half"]],
@ -84,6 +85,12 @@ tools_for_extensions = [
command = "tar jtvf"
success_status = "normal"
[unrar]
dependencies = ["unrar"]
url = "unrar"
command = "unrar l"
success_status = "normal"
[nm]
dependencies = ["binutils"]
url = "https://linux.die.net/man/1/nm"