guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: wine: Limit supported architectures to ones that can build o


From: Efraim Flashner
Subject: 01/01: gnu: wine: Limit supported architectures to ones that can build our wine.
Date: Wed, 10 Jan 2018 12:56:24 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 7ba2a1af5cc5f3e914fb3eb4b562e4676a659880
Author: Efraim Flashner <address@hidden>
Date:   Wed Jan 10 19:48:06 2018 +0200

    gnu: wine: Limit supported architectures to ones that can build our wine.
    
    * gnu/packages/wine.scm (wine)[supported systems]: New field, limit to
    architectures which can build for their selected '#:system'.
---
 gnu/packages/wine.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm
index da7620c..de1fa7a 100644
--- a/gnu/packages/wine.scm
+++ b/gnu/packages/wine.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014, 2015 Sou Bunnbu <address@hidden>
 ;;; Copyright © 2016 Ricardo Wurmus <address@hidden>
-;;; Copyright © 2016, 2017 Efraim Flashner <address@hidden>
+;;; Copyright © 2016, 2017, 2018 Efraim Flashner <address@hidden>
 ;;; Copyright © 2017, 2018 Rutger Helling <address@hidden>
 ;;; Copyright © 2017 Nicolas Goaziou <address@hidden>
 ;;;
@@ -155,6 +155,9 @@ simulating internal Windows logic like a virtual machine or 
emulator, Wine
 translates Windows API calls into POSIX calls on-the-fly, eliminating the
 performance and memory penalties of other methods and allowing you to cleanly
 integrate Windows applications into your desktop.")
+    ;; Any platform should be able to build wine, but based on '#:system' these
+    ;; are thr ones we currently support.
+    (supported-systems '("i686-linux" "x86_64-linux" "armhf-linux"))
     (license license:lgpl2.1+)
 
     ;; It really only supports IA32, but building on x86_64 will have the same



reply via email to

[Prev in Thread] Current Thread [Next in Thread]