You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
657 B
26 lines
657 B
3 years ago
|
#!@BASH@
|
||
|
|
||
|
# chroot dir
|
||
|
chroot_dir="$1"
|
||
|
|
||
|
# full paths to each package (pkg.tar.zst) to install
|
||
|
packages="${@:2}"
|
||
|
|
||
|
rm -rf $chroot_dir
|
||
|
mkdir -p $chroot_dir/var/lib/pacman
|
||
|
mkdir -p $chroot_dir/var/log
|
||
|
mkdir -p $chroot_dir/tmp
|
||
|
pacman -Syu --root $chroot_dir
|
||
|
pacman -S \
|
||
|
filesystem bash pacman \
|
||
|
mingw-w64-x86_64-gtksourceview4 \
|
||
|
--noconfirm --needed --root $chroot_dir
|
||
|
for pkg in "$packages"; do
|
||
|
pacman -U "$pkg" --noconfirm --needed --root $chroot_dir
|
||
|
done
|
||
|
pacman -U $zrythm_pkg_tar \
|
||
|
--noconfirm --needed --root $chroot_dir
|
||
|
cp -R /mingw64/lib/carla "$chroot_dir/mingw64/lib/"
|
||
|
glib-compile-schemas.exe \
|
||
|
"$chroot_dir/mingw64/share/glib-2.0/schemas"
|