mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 12:49:45 -05:00
gnu: flexbar: Remove trailing #T.
* gnu/packages/bioinformatics.scm (flexbar)[arguments]: Remove trailing #T from all build phases.
This commit is contained in:
parent
d0a1d798ee
commit
084bdf9d69
1 changed files with 3 additions and 6 deletions
|
@ -3583,20 +3583,17 @@ (define-public flexbar
|
||||||
(add-after 'unpack 'do-not-tune-to-CPU
|
(add-after 'unpack 'do-not-tune-to-CPU
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "src/CMakeLists.txt"
|
(substitute* "src/CMakeLists.txt"
|
||||||
((" -march=native") ""))
|
((" -march=native") ""))))
|
||||||
#t))
|
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(setenv "PATH" (string-append (getcwd) ":" (getenv "PATH")))
|
(setenv "PATH" (string-append (getcwd) ":" (getenv "PATH")))
|
||||||
(with-directory-excursion "../source/test"
|
(with-directory-excursion "../source/test"
|
||||||
(invoke "bash" "flexbar_test.sh"))
|
(invoke "bash" "flexbar_test.sh"))))
|
||||||
#t))
|
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (string-append (assoc-ref outputs "out")))
|
(let* ((out (string-append (assoc-ref outputs "out")))
|
||||||
(bin (string-append out "/bin/")))
|
(bin (string-append out "/bin/")))
|
||||||
(install-file "flexbar" bin))
|
(install-file "flexbar" bin)))))))
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("tbb" ,tbb)
|
`(("tbb" ,tbb)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
|
|
Loading…
Reference in a new issue