gnu: trilinos-serial-xyce: Update to 12.12.1.
* gnu/packages/engineering.scm (trilinos-serial-xyce): Update to 12.12.1. [arguments]: Add delete-tribits phase. [inputs]: Replace lapack-3.5 with lapack. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
ecf8d2a935
commit
d73482b408
@ -1279,17 +1279,27 @@ an embedded event driven algorithm.")
|
|||||||
;; TODO: Remove when we have modular Trilinos packages?
|
;; TODO: Remove when we have modular Trilinos packages?
|
||||||
(package
|
(package
|
||||||
(name "trilinos-serial-xyce")
|
(name "trilinos-serial-xyce")
|
||||||
(version "12.6.3")
|
(version "12.12.1")
|
||||||
(source
|
(source
|
||||||
(origin (method url-fetch)
|
(origin (method url-fetch)
|
||||||
(uri (string-append "https://trilinos.org/oldsite/download/files/trilinos-"
|
(uri (string-append "https://trilinos.org/oldsite/download/files/trilinos-"
|
||||||
version "-Source.tar.gz"))
|
version "-Source.tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"07jd1qpsbf31cmbyyngr4l67xzwyan24dyx5wlcahgbw7x6my3wn"))))
|
"1zgrcksrcbmyy79mbdv0j4j4sh0chpigxk8vcrrwgaxyxwxxhrvw"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:out-of-source? #t
|
`(#:out-of-source? #t
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
;; Delete unneeded tribits(build system) directory which makes validate-runpath
|
||||||
|
;; phase to fail.
|
||||||
|
(add-before 'validate-runpath 'delete-tribits
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(delete-file-recursively
|
||||||
|
(string-append (assoc-ref outputs "out")
|
||||||
|
"/lib/cmake/tribits"))
|
||||||
|
#t)))
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list "-DCMAKE_CXX_FLAGS=-O3 -fPIC"
|
(list "-DCMAKE_CXX_FLAGS=-O3 -fPIC"
|
||||||
"-DCMAKE_C_FLAGS=-O3 -fPIC"
|
"-DCMAKE_C_FLAGS=-O3 -fPIC"
|
||||||
@ -1322,7 +1332,7 @@ an embedded event driven algorithm.")
|
|||||||
("swig" ,swig)))
|
("swig" ,swig)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("boost" ,boost)
|
`(("boost" ,boost)
|
||||||
("lapack" ,lapack-3.5)
|
("lapack" ,lapack)
|
||||||
("suitesparse" ,suitesparse)))
|
("suitesparse" ,suitesparse)))
|
||||||
(home-page "https://trilinos.org")
|
(home-page "https://trilinos.org")
|
||||||
(synopsis "Engineering and scientific problems algorithms")
|
(synopsis "Engineering and scientific problems algorithms")
|
||||||
|
Loading…
Reference in New Issue
Block a user