From 0a45de0aa5c0504b7e476be96f7eb4c039255eeb Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Mon, 31 Jan 2022 04:58:33 -0500 Subject: [PATCH] Use wine from PlayOnLinux because it's already nice and prepackaged. --- .includes/gaming.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.includes/gaming.sh b/.includes/gaming.sh index 46d2ffa..c48a1ff 100755 --- a/.includes/gaming.sh +++ b/.includes/gaming.sh @@ -2,14 +2,16 @@ # URL from where wine is downloaded, must be i686 -wineURL="https://stormux.org/downloads/wine.tgz" +wineURL="https://www.playonlinux.com/wine/binaries/phoenicis/upstream-linux-x86/PlayOnLinux-wine-6.11-upstream-linux-x86.tar.gz" # Install required packages install_package cabextract box86 dos2unix p7zip unzip xdotool # Download and install wine wineFile="$(mktemp)" wget -O "$wineFile" "$wineURL" -pushd /opt +# Create wine directory +sudo mkdir -p /opt/wine +pushd /opt/wine sudo tar xf "$wineFile" popd