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.

42 lines
1.2 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_dxvk="git://github.com/doitsujin/dxvk.git"
  14. git_source_wine="git://source.winehq.org/git/wine.git"
  15. git_source_winestaging="git://github.com/wine-staging/wine-staging.git"
  16. # DXVK commits & branches
  17. git_commithash_dxvk=HEAD
  18. git_branch_dxvk=master
  19. # Wine commits & branches
  20. git_commithash_wine=HEAD
  21. git_branch_wine=master
  22. ##########
  23. # These apply only on Debian/Ubuntu/Mint
  24. git_source_meson="git://github.com/mesonbuild/meson.git"
  25. git_source_glslang="git://github.com/KhronosGroup/glslang.git"
  26. # Commits & branches: https://github.com/mesonbuild/meson
  27. git_commithash_meson=5d6dcf8850fcc5d552f55943b6aa3582754dedf8
  28. git_branch_meson=master
  29. # Commits & branches: https://github.com/KhronosGroup/glslang
  30. git_commithash_glslang=HEAD
  31. git_branch_glslang=master