From b4a330ac721bd7682066cfd246f2084368a364f2 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 31 Dec 2017 22:56:22 +0200 Subject: gnu: wine: Add support for armhf and aarch64. * gnu/packages/wine.scm (wine)[arguments]: Target armhf-linux when building on armhf or aarch64. [supported-systems]: Add armhf and aarch64 to supported systems. --- gnu/packages/wine.scm | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm index 2c7732bcf3..d5309fd986 100644 --- a/gnu/packages/wine.scm +++ b/gnu/packages/wine.scm @@ -55,7 +55,8 @@ #:use-module (gnu packages tls) #:use-module (gnu packages video) #:use-module (gnu packages xml) - #:use-module (gnu packages xorg)) + #:use-module (gnu packages xorg) + #:use-module (ice-9 match)) (define-public wine (package @@ -113,9 +114,13 @@ ("v4l-utils" ,v4l-utils) ("zlib" ,zlib))) (arguments - `(;; Force a 32-bit build (under the assumption that this package is - ;; being used on an IA32-compatible architecture.) - #:system "i686-linux" + `(;; Force a 32-bit build targeting a similar architecture, i.e.: + ;; armhf for armhf/aarch64, i686 for i686/x86_64. + #:system ,@(match (%current-system) + ((or "armhf-linux" "aarch64-linux") + `("armhf-linux")) + (_ + `("i686-linux"))) ;; XXX: There's a test suite, but it's unclear whether it's supposed to ;; pass. @@ -154,7 +159,7 @@ integrate Windows applications into your desktop.") ;; It really only supports IA32, but building on x86_64 will have the same ;; effect as building on i686 anyway. - (supported-systems '("i686-linux" "x86_64-linux")))) + (supported-systems (delete "mips64el-linux" %supported-systems)))) (define-public wine64 (package -- cgit v1.2.3 =''/>
path: root/gnu/tests
AgeCommit message (Expand)Author
2021-05-11gnu: Allow services to install kernel-loadable modules....raid5atemyhomework
2021-04-28tests: Add gui-uefi-installed-os test....Mathieu Othacehe
2021-04-18tests: ldap: Fix it....Mathieu Othacehe
2021-04-18tests: Increase VM memory size....Mathieu Othacehe
2021-04-18tests: patchwork: Fix it....Mathieu Othacehe
2021-04-13tests: postgresql: Fix it....Mathieu Othacehe
2021-04-13tests: halt: Fix it....Mathieu Othacehe
2021-04-12services: postgresql: Change service default socket directory....Christopher Baines
2021-04-12gnu: tests: Test basic funtionality of the IPFS service....Maxime Devos
2021-04-12tests: docker: Increase VM building memory size to 1024MiB....Mathieu Othacehe
2021-04-10tests: nfs: Fix typo in description....Tobias Geerinckx-Rice
2021-04-09services: Add Laminar....Christopher Baines
2021-04-05tests: libvirt: Catch issues with incorrect /var and /etc in package....Pierre Langlois
2021-03-28tests: Add Transmission Daemon system test....Simon South
2021-03-23tests: Remove Cuirass tests....Mathieu Othacehe
2021-03-16gnu: Remove MongoDB....Léo Le Bouter
2021-03-10tests: cuirass: Remove cuirass simple test....Mathieu Othacehe
2021-02-25tests: docker-system: Increase VM memory....Ludovic Courtès
2021-02-23tests: cuirass: Restore "cuirass running"....Mathieu Othacehe
2021-02-23tests: cuirass: Remove "cuirass running" test....Mathieu Othacehe
2021-02-23services: cuirass: Improve simple-cuirass-services....Mathieu Othacehe
2021-02-19services: cuirass: Add "simple-cuirass-services"....Mathieu Othacehe
2021-02-19tests: cuirass: Add an operating system argument....Mathieu Othacehe