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.

169 lines
4.5 KiB

  1. ########################################################
  2. # Common properties
  3. pkg_name="dxvk-git"
  4. pkg_license="custom --copyrightfile ../LICENSE"
  5. pkg_maintainer="${USER} <${USER}@unknown>"
  6. pkg_section="otherosfs"
  7. pkg_priority="optional"
  8. pkg_arch="all"
  9. dxvx_relative_builddir="debian/source/dxvk-master"
  10. pkg_commondesc="Vulkan-based D3D11 and D3D10 implementation for Linux / Wine"
  11. pkg_longdesc="
  12. A Vulkan-based translation layer for Direct3D 10/11 which
  13. allows running 3D applications on Linux using Wine.
  14. "
  15. pkg_giturl="https://github.com/doitsujin/dxvk"
  16. pkg_homeurl="https://github.com/doitsujin/dxvk"
  17. pkg_gitbranch=${git_branch_dxvk}
  18. git_commithash=${git_commithash_dxvk}
  19. pkg_gitver="git describe --long | sed 's/\-[a-z].*//; s/\-/\./; s/[a-z]//g'"
  20. pkg_installfile="./debian/install"
  21. pkg_controlfile="./debian/control"
  22. pkg_rulesfile="./debian/rules"
  23. ########################################################
  24. # Debian rules file section
  25. pkg_debrules="\
  26. #!/usr/bin/make -f
  27. %:
  28. dh \$@
  29. override_dh_auto_configure:
  30. override_dh_usrlocal:
  31. override_dh_install:
  32. # Compile DXVK
  33. bash ./package-release.sh master debian/source/ --no-package
  34. # Tell deb builder to create DXVK x32 & x64 subfolders
  35. for arch in 32 64; do mkdir -p ${dxvx_relative_builddir}/x${arch}; done
  36. # Make a proper executable script folder for setup_dxvk.verb file
  37. mkdir -p ${dxvx_relative_builddir}/bin
  38. echo -e \"#!/bin/sh\nwinetricks --force /usr/share/dxvk/setup_dxvk.verb\" > \"${dxvx_relative_builddir}/bin/setup_dxvk\"
  39. chmod +x "${dxvx_relative_builddir}/bin/setup_dxvk"
  40. dh_install
  41. "
  42. ########################################################
  43. # Debian install file section
  44. pkg_debinstall="\
  45. ${dxvx_relative_builddir}/setup_dxvk.verb usr/share/dxvk/
  46. ${dxvx_relative_builddir}/bin/* usr/bin/
  47. $(for arch in 32 64; do echo -e ${dxvx_relative_builddir}/x${arch}/* usr/share/dxvk/x${arch}/; done)
  48. "
  49. ########################################################
  50. # Debian control file subfields
  51. # Debian control file Overrides section
  52. pkg_overrides=(
  53. empty
  54. )
  55. # Debian control file Suggests section
  56. pkg_suggests=(
  57. empty
  58. )
  59. # Debian control file Conflicts section
  60. pkg_conflicts=(
  61. empty
  62. )
  63. # Debian control file Breaks section
  64. pkg_breaks=(
  65. empty
  66. )
  67. # Debian control file Replaces section
  68. pkg_replaces=(
  69. empty
  70. )
  71. # Debian control file Provides section
  72. pkg_provides=(
  73. empty
  74. )
  75. ############################
  76. # Build time dependencies
  77. pkg_deps_build=(
  78. #${_coredeps[*]}
  79. 'meson'
  80. 'glslang'
  81. 'gcc-mingw-w64-x86-64'
  82. 'gcc-mingw-w64-i686'
  83. 'g++-mingw-w64-x86-64'
  84. 'g++-mingw-w64-i686'
  85. 'mingw-w64-x86-64-dev'
  86. 'mingw-w64-i686-dev'
  87. )
  88. # Runtime dependencies
  89. pkg_deps_runtime=(
  90. 'wine'
  91. 'winetricks'
  92. )
  93. # Extra fields for Debian control file Source section
  94. pkg_extra_1=(
  95. empty
  96. )
  97. # Extra fields for Debian control file Package section
  98. pkg_extra_2=(
  99. empty
  100. )
  101. ############################
  102. # Deb builder execution field
  103. # Do not build either debug symbols or doc files
  104. pkg_debbuilder="DEB_BUILD_OPTIONS=\"strip nodocs noddebs\" dpkg-buildpackage -us -uc -b --source-option=--include-binaries"
  105. ########################################################
  106. # Contents of Debian control file
  107. # This is a necessary variable setting for array loops below
  108. IFS=$'\n'
  109. pkg_debcontrol="\
  110. Source: ${pkg_name}
  111. Section: ${pkg_section}
  112. Priority: ${pkg_priority}
  113. Maintainer: ${pkg_maintainer}
  114. Build-Depends: debhelper (>=9), $(if [[ ${pkg_deps_build[0]} != "empty" ]]; then \
  115. for w in ${pkg_deps_build[@]}; do printf '%s, ' ${w}; done; fi)
  116. Standards-Version: 4.1.3
  117. Homepage: ${pkg_homeurl}
  118. $(if [[ ${pkg_extra_1[0]} != "empty" ]]; then for w in ${pkg_extra_1[@]}; do echo ${w}; done ; fi)
  119. Package: ${pkg_name}
  120. Architecture: ${pkg_arch}
  121. Depends: \${shlibs:Depends}, \${misc:Depends}, $(if [[ ${pkg_deps_runtime[0]} != "empty" ]]; then \
  122. for w in ${pkg_deps_runtime[@]}; do printf '%s, ' ${w}; done; fi)
  123. Description: ${pkg_commondesc}
  124. $(echo -e ${pkg_longdesc} | sed 's/^/ /g; s/\n/\n /g')
  125. $(if [[ ${pkg_extra_2[0]} != "empty" ]]; then for w in ${pkg_extra_2[@]}; do echo ${w}; done ; fi)
  126. $(if [[ ${pkg_suggests[0]} != "empty" ]]; then echo "Suggests: $(echo ${_kg_suggests[*]} | sed 's/\s/, /g')"; fi)
  127. $(if [[ ${pkg_conflicts[0]} != "empty" ]]; then echo "Conflicts: $(echo ${pkg_overrides[*]} | sed 's/\s/, /g')"; fi)
  128. $(if [[ ${pkg_breaks[0]} != "empty" ]]; then echo "Breaks: $(echo ${pkg_overrides[*]} | sed 's/\s/, /g')"; fi)
  129. $(if [[ ${pkg_replaces[0]} != "empty" ]]; then echo "Replaces: $(echo ${pkg_overrides[*]} | sed 's/\s/, /g')"; fi)
  130. $(if [[ ${pkg_provides[0]} != "empty" ]]; then echo "Provides: $(echo ${pkg_overrides[*]} | sed 's/\s/, /g')"; fi)
  131. "
  132. unset IFS