From 5a1c0c6836c3c6462145a6943b8df9bf169ebccc Mon Sep 17 00:00:00 2001 From: Mike Swanson Date: Thu, 11 May 2023 14:40:02 -0700 Subject: [PATCH] Ports: Support extracting *.tar.zst source archives --- Ports/.port_include.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ports/.port_include.sh b/Ports/.port_include.sh index 04c6f3a7a15..8c574bcdb11 100755 --- a/Ports/.port_include.sh +++ b/Ports/.port_include.sh @@ -410,7 +410,7 @@ fetch() { run_nocd tar -xzf "${PORT_META_DIR}/${filename}" run touch .${filename}_extracted ;; - *.tar.gz|*.tar.bz|*.tar.bz2|*.tar.xz|*.tar.lz|.tbz*|*.txz|*.tgz) + *.tar.gz|*.tar.bz|*.tar.bz2|*.tar.xz|*.tar.lz|*.tar.zst|.tbz*|*.txz|*.tgz) run_nocd tar -xf "${PORT_META_DIR}/${filename}" run touch .${filename}_extracted ;;