diff --git a/scripts/pkgmeek b/scripts/pkgmeek index 24ae381..992e24f 100755 --- a/scripts/pkgmeek +++ b/scripts/pkgmeek @@ -141,8 +141,10 @@ if [ "$pkg_utd" = 0 ] || [ "$PKGMK_FORCE" = "yes" ]; then for (( u=0; u<${#_local_[@]}; u++ )) ; do here="${_local_[$u]}" case "$here" in - *.tar|*.tar.gz|*.tar.Z|*.tgz|*.tar.bz2|*.tbz2|*.tar.xz|*.txz|*.tar.lzma|*.tar.lz|*.zip|*.rpm) + *.tar|*.tar.gz|*.tar.Z|*.tgz|*.tar.bz2|*.tbz2|*.tar.xz|*.txz|*.tar.lzma|*.tar.lz) tar -C src --no-same-owner -paxf "$here" || errUZ+=1 ;; + *.7z|*.zip|*.rpm) + 7z x -osrc "$here" || errUZ+=1 ;; *) cp -r "$here" src/ ;; esac