gnu: multichoose: Install header files.

* gnu/packages/bioinformatics.scm (multichoose)[arguments]: Adjust
'install phase to also install header files.
This commit is contained in:
Efraim Flashner 2021-01-17 15:15:47 +02:00
parent 976603b909
commit 3ddeefe854
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -14812,10 +14812,14 @@ (define-public multichoose
(delete 'configure) ; There is no configure phase.
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin"))
(include (string-append out "/include")))
;; TODO: There are Python modules for these programs too.
(install-file "multichoose" bin)
(install-file "multipermute" bin))
(install-file "multipermute" bin)
(install-file "multichoose.h" include)
(install-file "multipermute.h" include))
#t)))))
(home-page "https://github.com/ekg/multichoose")
(synopsis "Efficient loopless multiset combination generation algorithm")