Browse Source

Add debian-specific variables

master
Pekka Helenius 1 year ago
parent
commit
2f2f17cb44
2 changed files with 28 additions and 14 deletions
  1. +14
    -7
      options.conf
  2. +14
    -7
      updatewine.sh

+ 14
- 7
options.conf View File

@ -15,11 +15,18 @@
#########
git_source_dxvknvapi="git://github.com/jp7677/dxvk-nvapi.git"
git_source_vkd3dproton="git://github.com/HansKristian-Work/vkd3d-proton.git"
git_source_dxvk="git://github.com/doitsujin/dxvk.git"
git_source_wine="git://source.winehq.org/git/wine.git"
git_source_winestaging="git://github.com/wine-staging/wine-staging.git"
git_source_dxvknvapi="git+https://github.com/jp7677/dxvk-nvapi.git"
git_source_vkd3dproton="git+https://github.com/HansKristian-Work/vkd3d-proton.git"
git_source_dxvk="git+https://github.com/doitsujin/dxvk.git"
git_source_wine="git://source.winehq.org/git/wine"
git_source_winestaging="git+https://github.com/wine-staging/wine-staging.git"
# Debian versions
git_source_dxvknvapi_debian="https://github.com/jp7677/dxvk-nvapi"
git_source_vkd3dproton_debian="https://github.com/HansKristian-Work/vkd3d-proton"
git_source_dxvk_debian="https://github.com/doitsujin/dxvk"
git_source_wine_debian="git://source.winehq.org/git/wine"
git_source_winestaging_debian="https://github.com/wine-staging/wine-staging"
# DXVK commits & branches
git_commithash_dxvk=HEAD
@ -40,8 +47,8 @@ git_branch_wine=master
##########
# These apply only on Debian/Ubuntu/Mint
git_source_meson="git://github.com/mesonbuild/meson.git"
git_source_glslang="git://github.com/KhronosGroup/glslang.git"
git_source_meson_debian="git://github.com/mesonbuild/meson.git"
git_source_glslang_debian="git://github.com/KhronosGroup/glslang.git"
# Commits & branches: https://github.com/mesonbuild/meson
git_commithash_meson=5d6dcf8850fcc5d552f55943b6aa3582754dedf8


+ 14
- 7
updatewine.sh View File

@ -219,13 +219,20 @@ gitbranch_overrides=(
# Pass them to subscripts, as well.
gitsources=(
"${git_source_dxvknvapi}" # 12
"${git_source_vkd3dproton}" # 13
"${git_source_dxvk}" # 14
"${git_source_glslang}" # 15
"${git_source_meson}" # 16
"${git_source_wine}" # 17
"${git_source_winestaging}" # 18
"${git_source_dxvknvapi}" # 12
"${git_source_vkd3dproton}" # 13
"${git_source_dxvk}" # 14
"${git_source_glslang_debian}" # 15
"${git_source_meson_debian}" # 16
"${git_source_wine}" # 17
"${git_source_winestaging}" # 18
# Debian
"${git_source_dxvknvapi_debian}" # 19
"${git_source_vkd3dproton_debian}" # 20
"${git_source_dxvk_debian}" # 21
"${git_source_wine_debian}" # 22
"${git_source_winestaging_debian}" # 23
)
#############################


Loading…
Cancel
Save