add targz and tarbz2 support

This commit is contained in:
Mario Fetka 2012-05-16 06:32:07 +02:00
parent 182bf06e0d
commit 1f212c3b49
2 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,7 @@ builder_config() {
CMD_unrar="`which unrar`" ; builder_check_error "Command 'unrar' not installed"
CMD_zip="`which zip`" ; builder_check_error "Command 'zip' not installed"
CMD_lha="`which lha`" ; builder_check_error "Command 'lha' not installed"
CMD_tar="`which tar`" ; builder_check_error "Command 'tar' not installed"
CMD_unix2dos="`which unix2dos`" ; builder_check_error "Command 'unix2dos' not installed"
CMD_identify="`which identify`" ; builder_check_error "Command 'identify' (ImageMagick) not installed"
CMD_zsyncmake="`which zsyncmake`" ; builder_check_error "Command 'zsyncmake' not installed"

View File

@ -64,6 +64,10 @@ function process_file() {
$CMD_unrar x $src $dst
elif [ "$format" = "lha" ]; then
$CMD_lha x -w=$dst $src
elif [ "$format" = "targz" ]; then
$CMD_tar xzvf $src -C $dst
elif [ "$format" = "tarbz2" ]; then
$CMD_tar xjvf $src -C $dst
else
fatal_error "Unknown compression format: $format"
fi