gnu: Add wine64-staging.

* gnu/packages/wine.scm (wine64-staging): New variable.
master
Rutger Helling 2017-12-24 16:00:15 +01:00
parent c154c97f90
commit 6cd46747e7
No known key found for this signature in database
GPG Key ID: F3A727DB44FCCA36
1 changed files with 17 additions and 0 deletions

View File

@ -216,3 +216,20 @@ integrated into the main branch.")
;; both GPL3+ and Apache 2 License.
(license
(list license:lgpl2.1+ license:silofl1.1 license:gpl3+ license:asl2.0))))
(define-public wine64-staging
(package
(inherit wine-staging)
(name "wine64-staging")
(arguments
`(#:make-flags
(list "SHELL=bash"
(string-append "libdir=" %output "/lib"))
#:configure-flags
(list "--enable-win64"
(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
,@(strip-keyword-arguments '(#:configure-flags #:make-flags #:system)
(package-arguments wine-staging))))
(synopsis "Implementation of the Windows API (staging branch, 64-bit
version)")
(supported-systems '("x86_64-linux" "aarch64-linux"))))