mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -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
|
(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)))
|
||||||
|
|
Loading…
Reference in a new issue