gnu: dealii: Remove trailing booleans.
* gnu/packages/maths.scm (dealii)[snippet]: Remove trailing boolean (and therefore the 'begin'). [native-inputs, inputs]: Reindent. [arguments]<#:phases>: Remove trailing boolean. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
e648957b7b
commit
e131f705dd
1 changed files with 10 additions and 13 deletions
|
@ -5191,22 +5191,20 @@ A unique design feature of Trilinos is its focus on packages.")
|
||||||
"dealii-fix-sundials.patch"))
|
"dealii-fix-sundials.patch"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
;; Remove bundled boost, muparser, TBB and UMFPACK.
|
||||||
;; Remove bundled boost, muparser, TBB and UMFPACK.
|
'(delete-file-recursively "bundled"))))
|
||||||
(delete-file-recursively "bundled")
|
|
||||||
#t))))
|
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
;; Required to build the documentation.
|
;; Required to build the documentation.
|
||||||
(list graphviz doxygen perl))
|
(list graphviz doxygen perl))
|
||||||
(inputs
|
(inputs
|
||||||
(list arpack-ng
|
(list arpack-ng
|
||||||
openblas
|
openblas
|
||||||
gfortran
|
gfortran
|
||||||
lapack
|
lapack
|
||||||
muparser
|
muparser
|
||||||
zlib))
|
zlib))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
;; Some scripts are installed into share/deal.II/scripts that require
|
;; Some scripts are installed into share/deal.II/scripts that require
|
||||||
;; perl and python, but they are not executable (and some are missing the
|
;; perl and python, but they are not executable (and some are missing the
|
||||||
|
@ -5243,8 +5241,7 @@ A unique design feature of Trilinos is its focus on packages.")
|
||||||
(let ((doc (string-append (assoc-ref outputs "doc")
|
(let ((doc (string-append (assoc-ref outputs "doc")
|
||||||
"/share/doc/" ,name "-" ,version)))
|
"/share/doc/" ,name "-" ,version)))
|
||||||
(for-each delete-file (map (lambda (f) (string-append doc "/" f))
|
(for-each delete-file (map (lambda (f) (string-append doc "/" f))
|
||||||
'("detailed.log" "summary.log"))))
|
'("detailed.log" "summary.log")))))))))
|
||||||
#t)))))
|
|
||||||
(home-page "https://www.dealii.org/")
|
(home-page "https://www.dealii.org/")
|
||||||
(synopsis "Finite element library")
|
(synopsis "Finite element library")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue