gnu: wine64-staging: Copy missing man file.
* gnu/packages/wine.scm (wine64-staging)[arguments]: Copy missing man file from "wine-staging" input. Clarify 'copy-wine32-files phase with comments. [synopsis]: Use proper "WoW64" term.master
parent
68e4921130
commit
1adc6013fe
|
@ -270,6 +270,7 @@ integrated into the main branch.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'copy-wine32-files
|
(add-after 'install 'copy-wine32-files
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
;; Copy the 32-bit binaries needed for WoW64.
|
||||||
(copy-file (string-append (assoc-ref %build-inputs "wine-staging")
|
(copy-file (string-append (assoc-ref %build-inputs "wine-staging")
|
||||||
"/bin/wine") (string-append (assoc-ref
|
"/bin/wine") (string-append (assoc-ref
|
||||||
%outputs "out") "/bin/wine"))
|
%outputs "out") "/bin/wine"))
|
||||||
|
@ -277,6 +278,12 @@ integrated into the main branch.")
|
||||||
"/bin/wine-preloader") (string-append
|
"/bin/wine-preloader") (string-append
|
||||||
(assoc-ref %outputs "out")
|
(assoc-ref %outputs "out")
|
||||||
"/bin/wine-preloader"))
|
"/bin/wine-preloader"))
|
||||||
|
;; Copy the missing man file for the wine binary from wine-staging.
|
||||||
|
(system (string-append "gunzip < " (string-append (assoc-ref
|
||||||
|
%build-inputs "wine-staging")
|
||||||
|
"/share/man/man1/wine.1.gz") "> "
|
||||||
|
(string-append (assoc-ref %outputs "out")
|
||||||
|
"/share/man/man1/wine.1")))
|
||||||
#t))
|
#t))
|
||||||
(add-after 'configure 'patch-dlopen-paths
|
(add-after 'configure 'patch-dlopen-paths
|
||||||
;; Hardcode dlopened sonames to absolute paths.
|
;; Hardcode dlopened sonames to absolute paths.
|
||||||
|
@ -295,6 +302,6 @@ integrated into the main branch.")
|
||||||
,@(strip-keyword-arguments '(#:configure-flags #:make-flags #:phases
|
,@(strip-keyword-arguments '(#:configure-flags #:make-flags #:phases
|
||||||
#:system)
|
#:system)
|
||||||
(package-arguments wine-staging))))
|
(package-arguments wine-staging))))
|
||||||
(synopsis "Implementation of the Windows API (staging branch, WOW64
|
(synopsis "Implementation of the Windows API (staging branch, WoW64
|
||||||
version)")
|
version)")
|
||||||
(supported-systems '("x86_64-linux" "aarch64-linux"))))
|
(supported-systems '("x86_64-linux" "aarch64-linux"))))
|
||||||
|
|
Reference in New Issue