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.

59 lines
1.9 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_dxvknvapi="git+https://github.com/jp7677/dxvk-nvapi.git"
  14. git_source_vkd3dproton="git+https://github.com/HansKristian-Work/vkd3d-proton.git"
  15. git_source_dxvk="git+https://github.com/doitsujin/dxvk.git"
  16. git_source_wine="git://source.winehq.org/git/wine"
  17. git_source_winestaging="git+https://github.com/wine-staging/wine-staging.git"
  18. # Debian versions
  19. git_source_dxvknvapi_debian="https://github.com/jp7677/dxvk-nvapi"
  20. git_source_vkd3dproton_debian="https://github.com/HansKristian-Work/vkd3d-proton"
  21. git_source_dxvk_debian="https://github.com/doitsujin/dxvk"
  22. git_source_wine_debian="git://source.winehq.org/git/wine"
  23. git_source_winestaging_debian="https://github.com/wine-staging/wine-staging"
  24. # DXVK commits & branches
  25. git_commithash_dxvk=HEAD
  26. git_branch_dxvk=master
  27. # DXVK NVAPI commits & branches
  28. git_commithash_dxvknvapi=HEAD
  29. git_branch_dxvknvapi=master
  30. # VKD3D commits & branches
  31. git_commithash_vkd3dproton=HEAD
  32. git_branch_vkd3dproton=master
  33. # Wine commits & branches
  34. git_commithash_wine=HEAD
  35. git_branch_wine=master
  36. ##########
  37. # These apply only on Debian/Ubuntu/Mint
  38. git_source_meson_debian="https://github.com/mesonbuild/meson"
  39. git_source_glslang_debian="https://github.com/KhronosGroup/glslang"
  40. # Commits & branches: https://github.com/mesonbuild/meson
  41. git_commithash_meson=HEAD
  42. git_branch_meson=master
  43. # Commits & branches: https://github.com/KhronosGroup/glslang
  44. git_commithash_glslang=HEAD
  45. git_branch_glslang=master