Created
September 13, 2022 03:27
-
-
Save jflemer/5f9825920e7a9eab204ba17ac502e429 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Tested on ubuntu 22.04 w/ wine-stable 7.0.0 | |
v="${1:-7.0.0}" | |
mkdir -p /opt/wine-stable/share/wine/mono | |
cd /opt/wine-stable/share/wine/mono | |
wget -N https://dl.winehq.org/wine/wine-mono/${v}/wine-mono-${v}-x86.tar.xz https://dl.winehq.org/wine/wine-mono/${v}/wine-mono-${v}-x86.msi | |
tar -xf wine-mono-${v}-x86.tar.xz | |
mv wine-mono-${v}-x86.msi wine-mono-${v}/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment