gnu: clapack: Remove trailing #T.

* gnu/packages/maths.scm (clapack)[arguments]: Remove trailing #T from build
phases.
This commit is contained in:
Ricardo Wurmus 2021-12-05 15:00:41 +01:00
parent 1d53c697b3
commit ae0acf6b6d
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -939,8 +939,7 @@ (define-public clapack
(add-after 'unpack 'disable-broken-tests
(lambda _
(substitute* "TESTING/CMakeLists.txt"
(("add_lapack_test.* xeigtstz\\)") ""))
#t))
(("add_lapack_test.* xeigtstz\\)") ""))))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
@ -962,8 +961,7 @@ (define-public clapack
"\\.h$")))
(copy-recursively (string-append "../clapack-"
,version "-CMAKE/INCLUDE")
(string-append out "/include"))
#t))))))
(string-append out "/include"))))))))
(home-page "https://www.netlib.org/clapack/")
(synopsis "Numerical linear algebra library for C")
(description