mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-10-31 20:14:27 +00:00
40 lines
935 B
Bash
Executable file
40 lines
935 B
Bash
Executable file
#!/bin/sh
|
|
PATH=$(dirname "$(readlink -f "${0}")")/..:$PATH
|
|
DIR=/tmp/appdwarf/wine
|
|
mkdir -p $DIR
|
|
|
|
LINK="$(curl https://api.github.com/repos/Kron4ek/Wine-Builds/releases | grep -om1 http.\*-staging-tkg-amd64.tar.xz)"
|
|
curl -L "$LINK" | tar xJ -C$DIR
|
|
mv $DIR/wine*/* $DIR
|
|
rmdir $DIR/wine*/
|
|
|
|
wget -O$DIR/winetricks https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
|
|
chmod +x $DIR/winetricks
|
|
|
|
cat > $DIR/AppRun << 'EOF'
|
|
#!/bin/sh
|
|
HERE=$(dirname "$(readlink -f "${0}")")
|
|
export WINE="${HERE}"/bin/wine
|
|
export WINE64="${HERE}"/bin/wine64
|
|
export WINESERVER="${HERE}"/bin/wineserver
|
|
export WINETRICKS="${HERE}"/winetricks
|
|
export DXVK_STATE_CACHE_PATH=~/.cache DXVK_LOG_PATH=none
|
|
|
|
if [ "$1" = "winetricks" ]; then
|
|
if [ $# -ge 2 ]; then
|
|
shift
|
|
"${WINETRICKS}" "$@"
|
|
else
|
|
"${WINETRICKS}" --help
|
|
fi
|
|
else
|
|
"${WINE}" "$@"
|
|
"${WINESERVER}" -w
|
|
fi
|
|
EOF
|
|
chmod +x $DIR/AppRun
|
|
|
|
appdwarf $DIR "$@"
|
|
rm -r $DIR
|
|
mv $DIR.sh wine
|