i made a small bash script for multiarch support (ubuntu, debian, fedora, arch, etc) could be greatly improved but it would be good to see an installer other then the lame repository for ubuntu
#!/bin/bash
INSTALLER="https://downloads.cncnet.org/TiberianSun_Online_Installer.exe"
WINETRICKS="https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks"
echo "Downloading wine"
if [ -f /etc/lsb-release ]; then
apt-get install wine -y
elif [ -f /etc/debian_version ]; then
aptitude install wine -y
elif [ -f /etc/redhat-release ]; then
yum|dnf install wine -y
else
echo "Unable to determine distribution"
exit
fi
echo "Configuring wine."
WINEARCH=win32 WINEPREFIX=~/.wine winecfg
echo "Downloading winetricks."
res=$(wget "$WINETRICKS" -q --show-progress)
if [ ! $? -eq 0 ]
then
echo "Failed to download winetricks"
exit
fi
echo "Installing dotnet20."
chmod +x winetricks && sh winetricks dotnet20
echo "Downloading installer."
res=$(wget "$INSTALLER" -q --show-progress)
if [ ! $? -eq 0 ]
then
echo "Failed to download installer"
exit
fi
wine $INSTALLER