gnu: velvet: Remove trailing #T.

* gnu/packages/bioinformatics.scm (velvet)[arguments]: Remove trailing #T from
build phases.
This commit is contained in:
Ricardo Wurmus 2021-12-05 17:21:39 +01:00
parent f2b99e3aaf
commit fe0f8c627a
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -13342,8 +13342,7 @@ (define-public velvet
(snippet (snippet
'(begin '(begin
(delete-file "Manual.pdf") (delete-file "Manual.pdf")
(delete-file-recursively "third-party") (delete-file-recursively "third-party")))))
#t))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:make-flags '("OPENMP=t") `(#:make-flags '("OPENMP=t")
@ -13354,8 +13353,7 @@ (define-public velvet
(add-after 'unpack 'fix-zlib-include (add-after 'unpack 'fix-zlib-include
(lambda _ (lambda _
(substitute* "src/binarySequences.c" (substitute* "src/binarySequences.c"
(("../third-party/zlib-1.2.3/zlib.h") "zlib.h")) (("../third-party/zlib-1.2.3/zlib.h") "zlib.h"))))
#t))
(replace 'install (replace 'install
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out")) (let* ((out (assoc-ref outputs "out"))
@ -13366,8 +13364,7 @@ (define-public velvet
(install-file "velveth" bin) (install-file "velveth" bin)
(install-file "velvetg" bin) (install-file "velvetg" bin)
(install-file "Manual.pdf" doc) (install-file "Manual.pdf" doc)
(install-file "Columbus_manual.pdf" doc) (install-file "Columbus_manual.pdf" doc)))))))
#t))))))
(inputs (inputs
`(("openmpi" ,openmpi) `(("openmpi" ,openmpi)
("zlib" ,zlib))) ("zlib" ,zlib)))