gnu: rsem: Remove trailing #T.

* gnu/packages/bioinformatics.scm (rsem)[arguments]: Remove trailing #T from
build phases.
This commit is contained in:
Ricardo Wurmus 2021-12-04 15:26:48 +01:00
parent 5e0bcba57b
commit c45c909026
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -6154,8 +6154,7 @@ (define-public rsem
(lambda _
(substitute* "Makefile"
(("^all : \\$\\(PROGRAMS\\).*") "all: $(PROGRAMS)\n")
(("^\\$\\(SAMLIBS\\).*") ""))
#t))
(("^\\$\\(SAMLIBS\\).*") ""))))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (string-append (assoc-ref outputs "out")))
@ -6166,8 +6165,7 @@ (define-public rsem
(for-each (lambda (file)
(install-file file bin))
(find-files "." "rsem-.*"))
(install-file "rsem_perl_utils.pm" perl))
#t))
(install-file "rsem_perl_utils.pm" perl))))
(add-after 'install 'wrap-program
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
@ -6182,8 +6180,7 @@ (define-public rsem
"rsem-plot-transcript-wiggles"
"rsem-prepare-reference"
"rsem-run-ebseq"
"rsem-run-prsem-testing-procedure")))
#t)))))
"rsem-run-prsem-testing-procedure"))))))))
(inputs
`(("boost" ,boost)
("r-minimal" ,r-minimal)