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:
Rutger Helling 2017-12-07 10:06:38 +01:00 committed by Danny Milosavljevic
parent 1aa6582ee9
commit e02693a3cb
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -158,10 +158,13 @@ (define-public wine64
(inherit wine)
(name "wine64")
(arguments
`(#:configure-flags
`(#:make-flags
(list "SHELL=bash"
(string-append "libdir=" %output "/lib"))
#:configure-flags
(list "--enable-win64"
(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib64"))
,@(strip-keyword-arguments '(#:configure-flags #:system)
(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
,@(strip-keyword-arguments '(#:configure-flags #:make-flags #:system)
(package-arguments wine))))
(synopsis "Implementation of the Windows API (64-bit version)")
(supported-systems '("x86_64-linux" "aarch64-linux"))))