2021-10-21 19:16:01 +02:00
|
|
|
#!/bin/sh -e
|
|
|
|
# Win64Depends.sh: download dependencies from MSYS2 for cross-compilation
|
2021-10-21 21:35:12 +02:00
|
|
|
# Dependencies: AWK, sed, sha256sum, cURL, bsdtar, wine64
|
2021-10-21 19:16:01 +02:00
|
|
|
repository=https://repo.msys2.org/mingw/mingw64/
|
|
|
|
|
|
|
|
status() {
|
|
|
|
echo "$(tput bold)-- $*$(tput sgr0)"
|
|
|
|
}
|
|
|
|
|
|
|
|
dbsync() {
|
|
|
|
status Fetching repository DB
|
|
|
|
[ -f db.tsv ] || curl -# "$repository/mingw64.db" | bsdtar -xOf- | awk '
|
|
|
|
function flush() { print f["%NAME%"] f["%FILENAME%"] f["%DEPENDS%"] }
|
|
|
|
NR > 1 && $0 == "%FILENAME%" { flush(); for (i in f) delete f[i] }
|
2021-10-21 21:35:12 +02:00
|
|
|
!/^[^%]/ { field = $0; next } { f[field] = f[field] $0 "\t" }
|
|
|
|
field == "%SHA256SUM%" { path = "*packages/" f["%FILENAME%"]
|
|
|
|
sub(/\t$/, "", path); print $0, path > "db.sums" } END { flush() }
|
2021-10-21 19:16:01 +02:00
|
|
|
' > db.tsv
|
|
|
|
}
|
|
|
|
|
|
|
|
fetch() {
|
|
|
|
status Resolving "$@"
|
|
|
|
mkdir -p packages
|
|
|
|
awk -F'\t' 'function get(name, i, a) {
|
|
|
|
if (visited[name]++ || !(name in filenames)) return
|
2021-10-21 21:35:12 +02:00
|
|
|
print filenames[name]; split(deps[name], a); for (i in a) get(a[i])
|
2021-10-21 19:16:01 +02:00
|
|
|
} BEGIN { while ((getline < "db.tsv") > 0) {
|
2021-10-21 21:35:12 +02:00
|
|
|
filenames[$1] = $2; deps[$1] = ""; for (i = 3; i <= NF; i++) {
|
|
|
|
gsub(/[<=>].*/, "", $i); deps[$1] = deps[$1] $i FS }
|
2021-10-21 19:16:01 +02:00
|
|
|
} for (i = 0; i < ARGC; i++) get(ARGV[i]) }' "$@" | while IFS= read -r name
|
|
|
|
do
|
|
|
|
status Fetching "$name"
|
|
|
|
[ -f "packages/$name" ] || curl -#o "packages/$name" "$repository/$name"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2021-10-21 21:35:12 +02:00
|
|
|
verify() {
|
|
|
|
status Verifying checksums
|
|
|
|
sha256sum --ignore-missing --quiet -c db.sums
|
|
|
|
}
|
|
|
|
|
2021-10-21 19:16:01 +02:00
|
|
|
extract() {
|
|
|
|
status Extracting packages
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
configure() {
|
|
|
|
status Configuring packages
|
|
|
|
glib-compile-schemas share/glib-2.0/schemas
|
|
|
|
wine64 bin/gdk-pixbuf-query-loaders.exe \
|
|
|
|
> lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
|
|
|
|
|
|
|
|
# pkgconf has a command line option for this, but CMake can't pass it
|
2021-10-22 00:08:58 +02:00
|
|
|
sed -i "s|^prefix=/mingw64|prefix=$(pwd)|" {share,lib}/pkgconfig/*.pc
|
2021-10-21 19:16:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mkdir -p win32-depends
|
|
|
|
cd win32-depends
|
|
|
|
dbsync
|
|
|
|
fetch mingw-w64-x86_64-gtk3 mingw-w64-x86_64-lua \
|
|
|
|
mingw-w64-x86_64-libwinpthread-git # because we don't do "provides"?
|
2021-10-21 21:35:12 +02:00
|
|
|
verify
|
2021-10-21 19:16:01 +02:00
|
|
|
extract
|
|
|
|
configure
|
|
|
|
|
2021-10-21 21:35:12 +02:00
|
|
|
status Success
|
|
|
|
|
2021-10-21 19:16:01 +02:00
|
|
|
# XXX: Why is this override needed to run some GLib-based things under wine64?
|
2021-11-01 09:26:48 +01:00
|
|
|
unset XDG_DATA_DIRS
|