gnu: wine64: Install libraries to /lib.
* gnu/packages/wine.scm (wine64)[arguments]: Remove inherited #:make-flags and add new #:make-flags argument. #:configure-flags: Change LDFLAGS from /lib64 to /lib.
This commit is contained in:
parent
1aa6582ee9
commit
e02693a3cb
|
@ -158,10 +158,13 @@ integrate Windows applications into your desktop.")
|
||||||
(inherit wine)
|
(inherit wine)
|
||||||
(name "wine64")
|
(name "wine64")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:make-flags
|
||||||
|
(list "SHELL=bash"
|
||||||
|
(string-append "libdir=" %output "/lib"))
|
||||||
|
#:configure-flags
|
||||||
(list "--enable-win64"
|
(list "--enable-win64"
|
||||||
(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib64"))
|
(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
|
||||||
,@(strip-keyword-arguments '(#:configure-flags #:system)
|
,@(strip-keyword-arguments '(#:configure-flags #:make-flags #:system)
|
||||||
(package-arguments wine))))
|
(package-arguments wine))))
|
||||||
(synopsis "Implementation of the Windows API (64-bit version)")
|
(synopsis "Implementation of the Windows API (64-bit version)")
|
||||||
(supported-systems '("x86_64-linux" "aarch64-linux"))))
|
(supported-systems '("x86_64-linux" "aarch64-linux"))))
|
||||||
|
|
Loading…
Reference in New Issue