From c22204cf7bf12056c43e5da2fd99c95866143ddc Mon Sep 17 00:00:00 2001 From: Leo Prikler Date: Thu, 22 Apr 2021 23:35:54 +0200 Subject: gnu: wine64-staging: copy wine32-staging libraries. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A similar phase has been added to wine64 since version 5.21 in order to fix linkage issues of binaries copied from wine32. See also . * gnu/packages/wine.scm (wine64-staging)[#phases]: Add ‘copy-wine32-libraries’. --- gnu/packages/wine.scm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm index a89d86b327..6f594bdc69 100644 --- a/gnu/packages/wine.scm +++ b/gnu/packages/wine.scm @@ -532,6 +532,13 @@ integrated into the main branch.") (copy-file (string-append wine32 "/bin/.wine-preloader-real") (string-append out "/bin/wine-preloader")) #t))) + (add-after 'install 'copy-wine32-libraries + (lambda* (#:key outputs #:allow-other-keys) + (let* ((wine32 (assoc-ref %build-inputs "wine-staging")) + (out (assoc-ref %outputs "out"))) + (copy-recursively (string-append wine32 "/lib/wine32") + (string-append out "/lib/wine32")) + #t))) (add-after 'compress-documentation 'copy-wine32-manpage (lambda* (#:key outputs #:allow-other-keys) (let* ((wine32 (assoc-ref %build-inputs "wine-staging")) -- cgit 1.4.1