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.

52 lines
1.5 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://github.com/jp7677/dxvk-nvapi.git"
  14. git_source_vkd3dproton="git://github.com/HansKristian-Work/vkd3d-proton.git"
  15. git_source_dxvk="git://github.com/doitsujin/dxvk.git"
  16. git_source_wine="git://source.winehq.org/git/wine.git"
  17. git_source_winestaging="git://github.com/wine-staging/wine-staging.git"
  18. # DXVK commits & branches
  19. git_commithash_dxvk=HEAD
  20. git_branch_dxvk=master
  21. # DXVK NVAPI commits & branches
  22. git_commithash_dxvknvapi=HEAD
  23. git_branch_dxvknvapi=master
  24. # VKD3D commits & branches
  25. git_commithash_vkd3dproton=HEAD
  26. git_branch_vkd3dproton=master
  27. # Wine commits & branches
  28. git_commithash_wine=HEAD
  29. git_branch_wine=master
  30. ##########
  31. # These apply only on Debian/Ubuntu/Mint
  32. git_source_meson="git://github.com/mesonbuild/meson.git"
  33. git_source_glslang="git://github.com/KhronosGroup/glslang.git"
  34. # Commits & branches: https://github.com/mesonbuild/meson
  35. git_commithash_meson=5d6dcf8850fcc5d552f55943b6aa3582754dedf8
  36. git_branch_meson=master
  37. # Commits & branches: https://github.com/KhronosGroup/glslang
  38. git_commithash_glslang=HEAD
  39. git_branch_glslang=master