guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: filevercmp: Install header files.


From: guix-commits
Subject: 02/04: gnu: filevercmp: Install header files.
Date: Sun, 17 Jan 2021 08:48:01 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 976603b909291281a7decd18c79b0a3430f400e6
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jan 17 15:06:05 2021 +0200

    gnu: filevercmp: Install header files.
    
    * gnu/packages/bioinformatics.scm (filevercmp)[arguments]: Adjust
    'install phase to install header files.
---
 gnu/packages/bioinformatics.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index bb97b2d..765d8e0 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -9385,8 +9385,9 @@ group or two ChIP groups run under different conditions.")
            (delete 'configure) ; There is no configure phase.
            (replace 'install
              (lambda* (#:key outputs #:allow-other-keys)
-               (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
-                 (install-file "filevercmp" bin)
+               (let ((out (assoc-ref outputs "out")))
+                 (install-file "filevercmp" (string-append out "/bin"))
+                 (install-file "filevercmp.h" (string-append out "/include"))
                  #t))))))
       (home-page "https://github.com/ekg/filevercmp";)
       (synopsis "This program compares version strings")



reply via email to

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