From e5e42b63eb18da38ca2f9f6c2f4b49801045011b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Mon, 26 Jun 2023 20:54:38 +0200 Subject: Win64Depends.sh: only extract what we need In case the packages directory has been preloaded or symlinked. --- Win64Depends.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Win64Depends.sh b/Win64Depends.sh index 105b1c8..8d68ec7 100644 --- a/Win64Depends.sh +++ b/Win64Depends.sh @@ -27,7 +27,8 @@ fetch() { } BEGIN { while ((getline < "db.tsv") > 0) { filenames[$1] = $2; deps[$1] = ""; for (i = 3; i <= NF; i++) { gsub(/[<=>].*/, "", $i); deps[$1] = deps[$1] $i FS } - } for (i = 0; i < ARGC; i++) get(ARGV[i]) }' "$@" | while IFS= read -r name + } for (i = 0; i < ARGC; i++) get(ARGV[i]) }' "$@" | tee db.want | \ + while IFS= read -r name do status Fetching "$name" [ -f "packages/$name" ] || curl -#o "packages/$name" "$repository/$name" @@ -44,9 +45,9 @@ extract() { for subdir in * do [ -d "$subdir" -a "$subdir" != packages ] && rm -rf -- "$subdir" done - for i in packages/* - do bsdtar -xf "$i" --strip-components 1 mingw64 - done + while IFS= read -r name + do bsdtar -xf "packages/$name" --strip-components 1 + done < db.want } configure() { -- cgit v1.2.3