13 lines
672 B
Bash
13 lines
672 B
Bash
|
export winVer="win7"
|
||
|
export bottle="draconis"
|
||
|
download "http://download.dracoent.com/Windows/SilverDollarSetup.exe"
|
||
|
install_wine_bottle speechsdk
|
||
|
cp -v "${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
|
||
|
${wine}server -k # Damn you, dotnet.
|
||
|
add_launcher "c:\Program Files\Draconis Entertainment\Silver Dollar\SilverDollarGui.exe"
|