me
/
guix
Archived
1
0
Fork 0

gnu: bwa: Install static library.

* gnu/packages/bioinformatics.scm (bwa)[arguments]: Install static
library.
master
Efraim Flashner 2020-01-08 11:29:09 +02:00
parent 1e3bbd90e4
commit 2673620f24
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@
;;; Copyright © 2015, 2016 Pjotr Prins <pjotr.guix@thebird.nl> ;;; Copyright © 2015, 2016 Pjotr Prins <pjotr.guix@thebird.nl>
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2016 Roel Janssen <roel@gnu.org> ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2016, 2018 Raoul Bonnal <ilpuccio.febo@gmail.com> ;;; Copyright © 2016, 2018 Raoul Bonnal <ilpuccio.febo@gmail.com>
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
@ -1682,13 +1682,13 @@ splice junctions between exons.")
(modify-phases %standard-phases (modify-phases %standard-phases
(replace 'install (replace 'install
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let ((bin (string-append (let* ((out (assoc-ref outputs "out"))
(assoc-ref outputs "out") "/bin")) (bin (string-append out "/bin"))
(doc (string-append (lib (string-append out "/lib"))
(assoc-ref outputs "out") "/share/doc/bwa")) (doc (string-append out "/share/doc/bwa"))
(man (string-append (man (string-append out "/share/man/man1")))
(assoc-ref outputs "out") "/share/man/man1")))
(install-file "bwa" bin) (install-file "bwa" bin)
(install-file "libbwa.a" lib)
(install-file "README.md" doc) (install-file "README.md" doc)
(install-file "bwa.1" man)) (install-file "bwa.1" man))
#t)) #t))