gnu: fasttree: Use INVOKE.

* gnu/packages/bioinformatics.scm (fasttree)[arguments]: Use INVOKE; simplify
install phase.
This commit is contained in:
Ricardo Wurmus 2018-10-21 21:30:53 +02:00
parent 38622ccd14
commit 0db75f7a79
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 22 additions and 23 deletions

View File

@ -2537,7 +2537,7 @@ similarity of community members.")
(delete 'configure)
(replace 'build
(lambda* (#:key source #:allow-other-keys)
(and (zero? (system* "gcc"
(invoke "gcc"
"-O3"
"-finline-functions"
"-funroll-loops"
@ -2545,8 +2545,8 @@ similarity of community members.")
"-o"
"FastTree"
source
"-lm"))
(zero? (system* "gcc"
"-lm")
(invoke "gcc"
"-DOPENMP"
"-fopenmp"
"-O3"
@ -2556,12 +2556,11 @@ similarity of community members.")
"-o"
"FastTreeMP"
source
"-lm")))))
"-lm")
#t))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((bin (string-append (assoc-ref outputs "out")
"/bin")))
(mkdir-p bin)
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
(install-file "FastTree" bin)
(install-file "FastTreeMP" bin)
#t))))))