10 lines
662 B
Bash
10 lines
662 B
Bash
export winVer="win10"
|
|
install_wine_bottle ie8 vcrun2015 speechsdk
|
|
# This download url breaks the download function, so grab it manually.
|
|
curl -L --output "${cache}/Hearthstone.exe" "https://us.battle.net/download/getInstaller?os=win&installer=Hearthstone-Setup.exe"
|
|
curl -L --output "${cache}/Hearthstone_patch.zip" "https://github.com/HearthstoneAccess/HearthstoneAccess/releases/latest/download/patch.zip"
|
|
wine "${cache}/Hearthstone.exe" /silent
|
|
unzip -o "${cache}/Hearthstone_patch.zip" -d "${WINEPREFIX}/drive_c/Program Files/Hearthstone"
|
|
find "${WINEPREFIX}" -type f -name "nvdaControllerClient32.dll" -exec rm -fv "{}" \;
|
|
#add_launcher "c:\Program Files\"
|