13 lines
931 B
Bash
13 lines
931 B
Bash
export winVer="win10"
|
|
export WINEARCH=win64
|
|
export norh=false # Must install a voice, and rhvoice works easily with 64 bit.
|
|
download "https://github.com/munawarb/Three-D-Velocity-Binaries/archive/master.zip" "https://github.com/RastislavKish/nvda2speechd/releases/download/v0.1/nvda2speechd64.dll" "https://github.com/RastislavKish/nvda2speechd/releases/download/v0.1/nvda2speechd32.dll"
|
|
install_wine_bottle sapi vcrun2008 gdiplus xact dotnet48 xna40
|
|
# Dotnet is evil. That is all.
|
|
# LC_ALL=C winetricks -q dotnet48
|
|
# ${wine}server -k # Ha ha ha.
|
|
unzip -d "$WINEPREFIX/drive_c/Program Files" "${cache}/master.zip"
|
|
find "${WINEPREFIX}" -type f -name 'nvdaControllerClient32.dll' -exec cp -v "${cache}/nvda2speechd32.dll" "{}" \;
|
|
find "${WINEPREFIX}" -type f -name 'nvdaControllerClient64.dll' -exec cp -v "${cache}/nvda2speechd64.dll" "{}" \;
|
|
add_launcher "c:\Program Files\Three-D-Velocity-Binaries-master\tdv.exe"
|