8 lines
444 B
Bash
8 lines
444 B
Bash
# Uses standard wine path based on architecture (win32/win64)
|
|
export winVer="win7"
|
|
download "http://oriolgomez.com/games/rr_en.zip" "${nvdaControllerClientDll}"
|
|
install_wine_bottle speechsdk
|
|
unzip -d "$WINEPREFIX/drive_c/Program Files/rhythm rage" "${cache}/rr_en.zip"
|
|
find "${WINEPREFIX}" -type f -name 'nvdaControllerClient32.dll' -exec cp -v "${cache}/nvdaControllerClient32.dll" "{}" \;
|
|
add_launcher "c:\Program Files\rhythm rage\game.exe"
|