https://github.com/varmd/wine-wayland
https://github.com/varmd/wine-wayland/releases
download zst
https://github.com/varmd/wine-wayland/releases/download/v8.2.1/wine-wayland-8.2-1-x86_64.pkg.tar.zst
sudo xbps-install zstd
unzstd wine-wayland-8.2-1-x86_64.pkg.tar.zst
move it to ~/wine maybe
nano wine.sh
#!/usr/bin/env bash
script_dir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${script_dir}/lib/wine/x86_64-unix:${script_dir}/lib/wine/x86_64-windows"
export WINE64="${script_dir}"/bin/wine64
export WINESERVER="${script_dir}"/bin/wineserver
export WINETRICKS="${script_dir}"/bin/winetricks
if [ "$1" = "winetricks" ]; then
if [ $# -ge 2 ]; then
shift
"${WINETRICKS}" "[email protected]"
else
"${WINETRICKS}" --help
fi
else
"${WINE64}" "[email protected]"
"${WINESERVER}" -w
fi
install dependencies needed
find dependencies using
ldd ~/wine/usr/lib/wine/x86_64-unix/* | grep 'not found'
ignore ntdll and win32u.so
if path is missing install it i'd to
sudo xbps-install libunwind
test exe
https://www.sumatrapdfreader.org/download-free-pdf-viewer
download portable and unzip
bash wine.sh ~/sumpdf/SumatraPDF-3.4.6-64.exe
runs but mouse is not working and no file open
Comments
Post a Comment