guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: ccl: Properly include x86-headers and remove missing "contri


From: guix-commits
Subject: 01/01: gnu: ccl: Properly include x86-headers and remove missing "contrib" folder.
Date: Thu, 22 Nov 2018 05:43:55 -0500 (EST)

ambrevar pushed a commit to branch master
in repository guix.

commit 910ac0effe886a5aa2b3315b43c01df3baff081d
Author: Pierre Neidhardt <address@hidden>
Date:   Thu Nov 22 11:42:01 2018 +0100

    gnu: ccl: Properly include x86-headers and remove missing "contrib" folder.
    
    * gnu/packages/lisp.scm (ccl): Include x86-headers and remove missing 
"contrib" folder.
    [home-page]: Use HTTPS.
---
 gnu/packages/lisp.scm | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index d401e5c..c0f8ff0 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -533,8 +533,13 @@ statistical profiler, a code coverage tool, and many other 
extensions.")
                (install-file kernel libdir)
                (install-file heap libdir)
 
-               (let ((dirs '("lib" "library" "examples" "contrib"
-                             "tools" "objc-bridge")))
+               (let ((dirs '("lib" "library" "examples" "tools" "objc-bridge"
+                             ,@(match (%current-system)
+                                ("x86_64-linux"
+                                 '("x86-headers64"))
+                                ("i686-linux"
+                                 '("x86-headers"))
+                                (_ '())))))
                  (for-each copy-recursively
                            dirs
                            (map (cut string-append libdir <>) dirs)))
@@ -551,7 +556,7 @@ statistical profiler, a code coverage tool, and many other 
extensions.")
                (chmod wrapper #o755))
              #t)))))
     (supported-systems '("i686-linux" "x86_64-linux" "armhf-linux"))
-    (home-page "http://ccl.clozure.com/";)
+    (home-page "https://ccl.clozure.com/";)
     (synopsis "Common Lisp implementation")
     (description "Clozure CL (often called CCL for short) is a Common Lisp
 implementation featuring fast compilation speed, native threads, a precise,



reply via email to

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