From 42c728e9768f961f9ce8e815eabc3ef471e51ba9 Mon Sep 17 00:00:00 2001 From: Justin Smith Date: Mon, 6 May 2024 11:26:59 -0400 Subject: [PATCH] Install latest version of Wine (9.0) --- Cross.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cross.toml b/Cross.toml index f614aee416d..bfbfc256e3e 100644 --- a/Cross.toml +++ b/Cross.toml @@ -3,7 +3,10 @@ dockerfile = "./docker/linux-cross/Dockerfile" [target.x86_64-pc-windows-gnu] pre-build = [ - "apt-get update && apt-get install --assume-yes nasm clang wine-devel" + "apt-get update && apt-get install --assume-yes nasm clang wget", + "mkdir -pm755 /etc/apt/keyrings", + "wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources", + "apt install --assume-yes --install-recommends winehq-stable" ] [build.env]