13 lines
697 B
Bash
13 lines
697 B
Bash
export winVer="win7"
|
|
# Uses standard wine path based on architecture (win32/win64)
|
|
download "http://download.dracoent.com/Windows/SilverDollarSetup.exe"
|
|
install_wine_bottle
|
|
cp -fv "${cache}/SilverDollarSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
|
wine "c:/windows/temp/SilverDollarSetup.exe" /sp- /silent
|
|
rm -fv "$WINEPREFIX/drive_c/windows/temp/SilverDollarSetup.exe"
|
|
# warning warning warning: Do not change location, or installer will not function.
|
|
# FIXME: Hacky, but it works. Install dotnet40 by itself so it actually doesn't hang.
|
|
DISPLAY="" winetricks -q dotnet40
|
|
wineserver -k # Damn you, dotnet.
|
|
add_launcher "c:\Program Files\Draconis Entertainment\Silver Dollar\SilverDollarGui.exe"
|