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
7
7
. lib.sh
8
8
9
9
main () {
10
+ local version=" 7.0.1~focal-1"
10
11
install_packages wget
11
12
12
13
dpkg --add-architecture i386
@@ -26,9 +27,14 @@ main() {
26
27
mv winehq-focal.sources /etc/apt/sources.list.d/
27
28
sed -i s@/usr/share/keyrings/@/etc/apt/keyrings/@ /etc/apt/sources.list.d/winehq-focal.sources || true
28
29
30
+ # winehq requires all the dependencies to be manually specified
31
+ # if we're not using the latest version of a given major version.
29
32
apt-get update
30
33
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} "
32
38
33
39
purge_packages
34
40
}
You can’t perform that action at this time.
0 commit comments