tools: Added 7z for 7z archive files.

This commit is contained in:
Andrew Hamilton 2018-06-04 08:35:36 +10:00
parent 8b6fd9c978
commit 6c78f9c06c
2 changed files with 9 additions and 1 deletions

View file

@ -22,6 +22,7 @@ tools_for_extensions = [
[["tar.gz", "tgz"],["tar_gz"]],
[["tar.bz2"], ["tar_bz2"]],
[["rar"], ["unrar"]],
[["7z"], ["7z"]],
[["a", "so"], ["nm"]],
[["png", "jpg", "gif", "bmp", "ppm", "tiff", "tga"], ["identify", "pil",
"pil_half"]],
@ -92,6 +93,12 @@ tools_for_extensions = [
command = "unrar l"
success_status = "normal"
[7z]
dependencies = ["7z"]
url = "https://en.wikipedia.org/wiki/7z"
command = "7z l"
success_status = "normal"
[nm]
dependencies = ["binutils"]
url = "https://linux.die.net/man/1/nm"