Browse Source

windows-msys: fix zrythm package not being installed in chroot

use_builds_script
Alexandros Theodotou 2 years ago
parent
commit
04a06e1155
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 3
      windows-msys/make_windows_chroot.sh.in
  2. 6
      windows-msys/meson.build

3
windows-msys/make_windows_chroot.sh.in

@ -26,7 +26,8 @@ pacman -S \ @@ -26,7 +26,8 @@ pacman -S \
for pkg in "${packages_array[@]}"; do
pacman -U "$pkg" --noconfirm --needed --root $chroot_dir
done
ls -l $chroot_dir/mingw64/lib/lv2 # verify plugins exist
# verify plugins exist
ls -l $chroot_dir/mingw64/lib/lv2/Z*.lv2
pacman -S \
mingw-w64-x86_64-gtksourceview4 \
mingw-w64-x86_64-fftw \

6
windows-msys/meson.build

@ -308,12 +308,12 @@ windows_chroot_target = custom_target ( @@ -308,12 +308,12 @@ windows_chroot_target = custom_target (
command: [
bash, '-c',
'@INPUT0@ "$1" "$2" "$3" "$4" "$5" "$6" ' +
'"$7" "$8" "$9" "${10}" "${11}" "${12}"',
'"$7" "$8" "$9" "${10}" "${11}" "${12}" "${13}"',
'_ignored',
'@OUTPUT@', chroot_dir, '@INPUT1@', '@INPUT2@',
'@INPUT3@', '@INPUT4@', '@INPUT5@', '@INPUT6@',
'@INPUT7@', '@INPUT8@', '@INPUT9@',
'@INPUT10@',
'@INPUT7@', '@INPUT8@', '@INPUT9@', '@INPUT10@',
'@INPUT11@',
],
console: true,
install: false,

Loading…
Cancel
Save