Automate installation of DXVK, D9VK + Wine/Wine Staging & update GPU drivers + PlayonLinux wineprefixes (Debian/Ubuntu/Mint/Arch Linux/Manjaro)
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.

47 lines
1.4 KiB

  1. ########################################################
  2. # Options for DXVK/Wine-Staging scripts
  3. ########################################################
  4. # Should we freeze Git versions of these packages?
  5. # This is handy in some cases, if breakages occur
  6. # (although we actually compile an older version of a package)
  7. #
  8. # Define a commit hash to freeze to
  9. # Use keyword 'HEAD' if you want to use the latest git
  10. # version available
  11. # Do NOT leave these variable empty!
  12. #########
  13. git_source_vkd3dproton="git://github.com/HansKristian-Work/vkd3d-proton.git"
  14. git_source_dxvk="git://github.com/doitsujin/dxvk.git"
  15. git_source_wine="git://source.winehq.org/git/wine.git"
  16. git_source_winestaging="git://github.com/wine-staging/wine-staging.git"
  17. # DXVK commits & branches
  18. git_commithash_dxvk=HEAD
  19. git_branch_dxvk=master
  20. # VKD3D commits & branches
  21. git_commithash_vkd3dproton=HEAD
  22. git_branch_vkd3dproton=master
  23. # Wine commits & branches
  24. git_commithash_wine=HEAD
  25. git_branch_wine=master
  26. ##########
  27. # These apply only on Debian/Ubuntu/Mint
  28. git_source_meson="git://github.com/mesonbuild/meson.git"
  29. git_source_glslang="git://github.com/KhronosGroup/glslang.git"
  30. # Commits & branches: https://github.com/mesonbuild/meson
  31. git_commithash_meson=5d6dcf8850fcc5d552f55943b6aa3582754dedf8
  32. git_branch_meson=master
  33. # Commits & branches: https://github.com/KhronosGroup/glslang
  34. git_commithash_glslang=HEAD
  35. git_branch_glslang=master