gnu: bowtie1: Enable building on more systems.

* gnu/packages/bioinformatics.scm (bowtie1)[arguments]: Add make-flag to
disable searching for cpu features on non-x86 systems.
[supported-systems]: Enable all 64-bit supported systems.

Change-Id: Ice30df945ba154e39cd58a91847329e81038a3af
This commit is contained in:
Efraim Flashner 2024-02-28 11:35:37 +02:00
parent aa1d419586
commit 9d882d2ef5
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3775,14 +3775,17 @@ (define-public bowtie1
`(#:tests? #f ; Tests need various perl modules
#:test-target "simple-test"
#:make-flags
,#~(list "CC=gcc" "all"
(string-append "prefix=" #$output))
,#~(append #$(if (not (target-x86?))
#~'("POPCNT_CAPABILITY=0")
#~'())
(list "CC=gcc" "all"
(string-append "prefix=" #$output)))
#:phases
(modify-phases %standard-phases
(delete 'configure))))
(inputs
(list python-wrapper tbb zlib))
(supported-systems '("x86_64-linux"))
(supported-systems %64bit-supported-systems)
(home-page "https://bowtie-bio.sourceforge.net/index.shtml")
(synopsis "Fast aligner for short nucleotide sequence reads")
(description