guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: coq-mathcomp: Adjust '#:make-flags'.


From: guix-commits
Subject: 02/05: gnu: coq-mathcomp: Adjust '#:make-flags'.
Date: Wed, 17 Nov 2021 22:34:13 -0500 (EST)

roptat pushed a commit to branch master
in repository guix.

commit 7b93c6d77786c27171900045f62be0fce69432f7
Author: zimoun <zimon.toutoune@gmail.com>
AuthorDate: Tue Nov 16 19:51:51 2021 +0100

    gnu: coq-mathcomp: Adjust '#:make-flags'.
    
    * gnu/packages/coq.scm (coq-mathcomp)[arguments]<#:make-flags>: Set install
    destination.
    <#:phases>: Remove replace 'install.
    
    Signed-off-by: Julien Lepiller <julien@lepiller.eu>
---
 gnu/packages/coq.scm | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm
index 322bdb1..602a2d3 100644
--- a/gnu/packages/coq.scm
+++ b/gnu/packages/coq.scm
@@ -326,17 +326,14 @@ assistant.")
        ("coq" ,coq)))
     (arguments
      `(#:tests? #f ; No tests.
+       #:make-flags (list (string-append "COQLIBINSTALL="
+                                         (assoc-ref %outputs "out")
+                                         "/lib/coq/user-contrib"))
        #:phases
        (modify-phases %standard-phases
          (delete 'configure)
          (add-before 'build 'chdir
-           (lambda _ (chdir "mathcomp") #t))
-         (replace 'install
-           (lambda* (#:key outputs #:allow-other-keys)
-             (invoke "make" "-f" "Makefile.coq"
-                     (string-append "COQLIB=" (assoc-ref outputs "out")
-                                    "/lib/coq/")
-                     "install"))))))
+           (lambda _ (chdir "mathcomp") #t)))))
     (home-page "https://math-comp.github.io/";)
     (synopsis "Mathematical Components for Coq")
     (description "Mathematical Components for Coq has its origins in the formal



reply via email to

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