Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/scripts/libmakepkg/source/file.sh.in
diff options
context:
space:
mode:
authorMorten Linderud <morten@linderud.pw>2021-02-21 22:36:31 +0100
committerAllan McRae <allan@archlinux.org>2021-02-24 22:51:14 +1000
commit7587153a447bd537c8f138be9ca0a3886a5f1e57 (patch)
tree14b5d510cedf32f01610b035f0e5e91404a798e1 /scripts/libmakepkg/source/file.sh.in
parent17d3da477770313a16a4f29ecae8476613ad3277 (diff)
libmakepkg: Support zstd decompression for sources
This enables us to extract files in the source array and ensures that we can decompress files if the uncompressed signature is served. Signed-off-by: Morten Linderud <morten@linderud.pw> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/libmakepkg/source/file.sh.in')
-rw-r--r--scripts/libmakepkg/source/file.sh.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/libmakepkg/source/file.sh.in b/scripts/libmakepkg/source/file.sh.in
index b29aeb04..cbaab315 100644
--- a/scripts/libmakepkg/source/file.sh.in
+++ b/scripts/libmakepkg/source/file.sh.in
@@ -118,6 +118,11 @@ extract_file() {
xz) cmd="xz" ;;
*) return;;
esac ;;
+ *application/zstd*)
+ case "$ext" in
+ zst) cmd="zstd" ;;
+ *) return;;
+ esac ;;
*)
# See if bsdtar can recognize the file
if bsdtar -tf "$file" -q '*' &>/dev/null; then