me
/
guix
Archived
1
0
Fork 0

gnu: filevercmp: Install header files.

* gnu/packages/bioinformatics.scm (filevercmp)[arguments]: Adjust
'install phase to install header files.
master
Efraim Flashner 2021-01-17 15:06:05 +02:00
parent 3d6c5560c0
commit 976603b909
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 3 additions and 2 deletions

View File

@ -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")