summaryrefslogtreecommitdiff
path: root/scripts/functions
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-08-19 05:39:26 (GMT)
committerAlexey Neyman <stilor@att.net>2017-08-19 05:39:26 (GMT)
commitbe399f1046874daa40b15cbb7d74e715ae3714e6 (patch)
tree4fa20bf4d5027571c5e483e04a644a4bc7091d2c /scripts/functions
parent321990916bd5180b11c598279680794ce9b044e3 (diff)
Record tarball formats
Also, missed upgrades of gmp, isl, mingw-w64 Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/functions')
-rw-r--r--scripts/functions4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/functions b/scripts/functions
index ed8eb67..ba2e062 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -624,6 +624,7 @@ CT_DoListTarballExt()
{
printf ".tar.xz\n"
printf ".tar.lzma\n"
+ printf ".tar.lz\n"
printf ".tar.bz2\n"
printf ".tar.gz\n.tgz\n"
printf ".tar\n"
@@ -1806,6 +1807,9 @@ CT_Extract()
*.tar.lzma)
xz -fdc "${file}" | CT_DoExecLog FILE tar x -v -f - -C "${dir}" ${components}
;;
+ *.tar.lz)
+ lzip -fdc "${file}" | CT_DoExecLog FILE tar x -v -f - -C "${dir}" ${components}
+ ;;
*.tar.bz2)
bzip2 -dc "${file}" | CT_DoExecLog FILE tar x -v -f - -C "${dir}" ${components}
;;