mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-08 12:20:41 -05:00
gnu: velvet: Remove trailing #T.
* gnu/packages/bioinformatics.scm (velvet)[arguments]: Remove trailing #T from build phases.
This commit is contained in:
parent
f2b99e3aaf
commit
fe0f8c627a
1 changed files with 3 additions and 6 deletions
|
@ -13342,8 +13342,7 @@ (define-public velvet
|
|||
(snippet
|
||||
'(begin
|
||||
(delete-file "Manual.pdf")
|
||||
(delete-file-recursively "third-party")
|
||||
#t))))
|
||||
(delete-file-recursively "third-party")))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:make-flags '("OPENMP=t")
|
||||
|
@ -13354,8 +13353,7 @@ (define-public velvet
|
|||
(add-after 'unpack 'fix-zlib-include
|
||||
(lambda _
|
||||
(substitute* "src/binarySequences.c"
|
||||
(("../third-party/zlib-1.2.3/zlib.h") "zlib.h"))
|
||||
#t))
|
||||
(("../third-party/zlib-1.2.3/zlib.h") "zlib.h"))))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
|
@ -13366,8 +13364,7 @@ (define-public velvet
|
|||
(install-file "velveth" bin)
|
||||
(install-file "velvetg" bin)
|
||||
(install-file "Manual.pdf" doc)
|
||||
(install-file "Columbus_manual.pdf" doc)
|
||||
#t))))))
|
||||
(install-file "Columbus_manual.pdf" doc)))))))
|
||||
(inputs
|
||||
`(("openmpi" ,openmpi)
|
||||
("zlib" ,zlib)))
|
||||
|
|
Loading…
Reference in a new issue