Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
760B

  1. #!/bin/bash
  2. rm -rf ~/.winepy3
  3. rm -rf ~/.winepy3_x86
  4. rm -rf ~/.winepy3_x64
  5. export WINEARCH=win32
  6. export WINEPREFIX=~/.winepy3_x86
  7. wineboot
  8. regsvr32 wineasio.dll
  9. winetricks vcrun2010
  10. winetricks corefonts
  11. winetricks fontsmooth=rgb
  12. # cd data/windows/python
  13. # msiexec /i python-3.4.1.msi /qn
  14. # msiexec /i cx_Freeze-4.3.3.win32-py3.4.msi /qn
  15. # wine PyQt5-5.3.1-gpl-Py3.4-Qt5.3.1-x32.exe
  16. # cd ../../..
  17. export WINEARCH=win64
  18. export WINEPREFIX=~/.winepy3_x64
  19. wineboot
  20. regsvr32 wineasio.dll
  21. wine64 regsvr32 wineasio.dll
  22. winetricks vcrun2010
  23. winetricks corefonts
  24. winetricks fontsmooth=rgb
  25. # cd data/windows/python
  26. # msiexec /i python-3.4.1.amd64.msi /qn
  27. # msiexec /i cx_Freeze-4.3.3.win-amd64-py3.4.msi /qn
  28. # wine PyQt5-5.3.1-gpl-Py3.4-Qt5.3.1-x64.exe
  29. # cd ../../..