mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: muscle: Use INVOKE.
* gnu/packages/bioinformatics.scm (muscle)[arguments]: Use INVOKE and return #T unconditionally.
This commit is contained in:
parent
0881d62f25
commit
179416467f
1 changed files with 3 additions and 2 deletions
|
@ -4236,12 +4236,13 @@ (define-public muscle
|
|||
(delete 'configure)
|
||||
(replace 'check
|
||||
;; There are no tests, so just test if it runs.
|
||||
(lambda _ (zero? (system* "./muscle" "-version"))))
|
||||
(lambda _ (invoke "./muscle" "-version") #t))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(bin (string-append out "/bin")))
|
||||
(install-file "muscle" bin)))))))
|
||||
(install-file "muscle" bin)
|
||||
#t))))))
|
||||
(home-page "http://www.drive5.com/muscle")
|
||||
(synopsis "Multiple sequence alignment program")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue