File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ set -euo pipefail
77. lib.sh
88
99main () {
10+ local version=" 7.0.1~focal-1"
1011 install_packages wget
1112
1213 dpkg --add-architecture i386
@@ -26,9 +27,14 @@ main() {
2627 mv winehq-focal.sources /etc/apt/sources.list.d/
2728 sed -i s@/usr/share/keyrings/@/etc/apt/keyrings/@ /etc/apt/sources.list.d/winehq-focal.sources || true
2829
30+ # winehq requires all the dependencies to be manually specified
31+ # if we're not using the latest version of a given major version.
2932 apt-get update
3033 apt install --no-install-recommends --assume-yes \
31- " winehq-stable=7.0.0.0~bionic-1"
34+ " wine-stable=${version} " \
35+ " wine-stable-amd64=${version} " \
36+ " wine-stable-i386=${version} " \
37+ " winehq-stable=${version} "
3238
3339 purge_packages
3440}
You can’t perform that action at this time.
0 commit comments