8 lines
394 B
Bash
8 lines
394 B
Bash
# Uses standard wine path based on architecture (win32/win64)
|
|
export winVer="win7"
|
|
download "http://oriolgomez.com/games/hammer_en.zip"
|
|
install_wine_bottle speechsdk
|
|
unzip -d "$WINEPREFIX/drive_c/Program Files/hammer of glory" "${cache}/hammer_en.zip"
|
|
find "${WINEPREFIX}" -type f -name "nvdaControllerClient32.dll" -exec rm -fv "{}" \;
|
|
add_launcher "c:\Program Files\hammer of glory\game.exe"
|