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.

175 lines
4.6 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. dxvk_relative_builddir="debian/source/dxvk-master"
  10. pkg_commondesc="Vulkan-based D3D11, D3D10 & D3D9 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 ${dxvk_relative_builddir}/x${arch}; done
  36. # Make a proper executable script folder for setup_dxvk.sh file
  37. mkdir -p ${dxvk_relative_builddir}/bin
  38. printf '%s\n%s' \"#!/bin/sh\" \"/usr/share/dxvk/setup_dxvk.sh\" > \"${dxvk_relative_builddir}/bin/setup_dxvk\"
  39. chmod +x "${dxvk_relative_builddir}/bin/setup_dxvk"
  40. dh_install
  41. "
  42. ########################################################
  43. # Debian install file section
  44. pkg_debinstall="\
  45. ${dxvk_relative_builddir}/setup_dxvk.sh usr/share/dxvk/
  46. ${dxvk_relative_builddir}/bin/* usr/bin/
  47. $(for arch in 32 64; do echo -e ${dxvk_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. d9vk-git
  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-base'
  82. #'binutils-common'
  83. 'mingw-w64-common'
  84. 'binutils-mingw-w64-x86-64'
  85. 'binutils-mingw-w64-i686'
  86. 'mingw-w64-x86-64-dev'
  87. 'gcc-mingw-w64-x86-64'
  88. 'g++-mingw-w64-x86-64'
  89. 'mingw-w64-i686-dev'
  90. 'gcc-mingw-w64-i686'
  91. 'g++-mingw-w64-i686'
  92. )
  93. # Runtime dependencies
  94. pkg_deps_runtime=(
  95. 'wine'
  96. )
  97. # Extra fields for Debian control file Source section
  98. pkg_extra_1=(
  99. empty
  100. )
  101. # Extra fields for Debian control file Package section
  102. pkg_extra_2=(
  103. empty
  104. )
  105. ############################
  106. # Deb builder execution field
  107. # Do not build either debug symbols or doc files
  108. pkg_debbuilder="DEB_BUILD_OPTIONS=\"strip nodocs noddebs\" dpkg-buildpackage -us -uc -b -d --source-option=--include-binaries"
  109. ########################################################
  110. # Contents of Debian control file
  111. # This is a necessary variable setting for array loops below
  112. IFS=$'\n'
  113. pkg_debcontrol="\
  114. Source: ${pkg_name}
  115. Section: ${pkg_section}
  116. Priority: ${pkg_priority}
  117. Maintainer: ${pkg_maintainer}
  118. Build-Depends: debhelper (>=9), $(if [[ ${pkg_deps_build[0]} != "empty" ]]; then \
  119. for w in ${pkg_deps_build[@]}; do printf '%s, ' ${w}; done; fi)
  120. Standards-Version: 4.1.3
  121. Homepage: ${pkg_homeurl}
  122. $(if [[ ${pkg_extra_1[0]} != "empty" ]]; then for w in ${pkg_extra_1[@]}; do echo ${w}; done ; fi)
  123. Package: ${pkg_name}
  124. Architecture: ${pkg_arch}
  125. Depends: \${shlibs:Depends}, \${misc:Depends}, $(if [[ ${pkg_deps_runtime[0]} != "empty" ]]; then \
  126. for w in ${pkg_deps_runtime[@]}; do printf '%s, ' ${w}; done; fi)
  127. Description: ${pkg_commondesc}
  128. $(echo -e ${pkg_longdesc} | sed 's/^/ /g; s/\n/\n /g')
  129. $(if [[ ${pkg_extra_2[0]} != "empty" ]]; then for w in ${pkg_extra_2[@]}; do echo ${w}; done ; fi)
  130. $(if [[ ${pkg_suggests[0]} != "empty" ]]; then echo "Suggests: $(echo ${_kg_suggests[*]} | sed 's/\s/, /g')"; fi)
  131. $(if [[ ${pkg_conflicts[0]} != "empty" ]]; then echo "Conflicts: $(echo ${pkg_overrides[*]} | sed 's/\s/, /g')"; fi)
  132. $(if [[ ${pkg_breaks[0]} != "empty" ]]; then echo "Breaks: $(echo ${pkg_overrides[*]} | sed 's/\s/, /g')"; fi)
  133. $(if [[ ${pkg_replaces[0]} != "empty" ]]; then echo "Replaces: $(echo ${pkg_overrides[*]} | sed 's/\s/, /g')"; fi)
  134. $(if [[ ${pkg_provides[0]} != "empty" ]]; then echo "Provides: $(echo ${pkg_overrides[*]} | sed 's/\s/, /g')"; fi)
  135. "
  136. unset IFS