diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-02-07 14:19:04 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-02-07 22:36:01 +0100 |
commit | 242dbd8e5d4467b6f885bc45ad8ba943d6d51792 (patch) | |
tree | babe61cbf2eae834fcf4348cee012ec23d6be2a7 /gnu/packages/maths.scm | |
parent | 3847d1f22f3222a008971a65ba6d1ffaef1ec676 (diff) | |
download | guix-242dbd8e5d4467b6f885bc45ad8ba943d6d51792.tar guix-242dbd8e5d4467b6f885bc45ad8ba943d6d51792.tar.gz |
gnu: Add dune-geometry.
* gnu/packages/maths.scm (dune-geometry): New variable.
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index ea91602d26..eb0abaf3d7 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4313,3 +4313,44 @@ grid-based methods. It supports the easy implementation of methods like Differences} (FD).") ;; GPL version 2 with "runtime exception" to make it behave like LGPLv2. (license license:gpl2))) + +(define-public dune-geometry + (package + (name "dune-geometry") + (version "2.6.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://dune-project.org/download/" + version "/dune-geometry-" version ".tar.gz")) + (sha256 + (base32 + "0hlaaxjyv9j05blasvb67sy02hd0w4g9znf68gdh3l731dd1aqbn")))) + (build-system cmake-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'build 'build-tests + (lambda* (#:key make-flags #:allow-other-keys) + (apply invoke "make" "build_tests" make-flags)))))) + (inputs + `(("dune-common" ,dune-common) + ("openmpi" ,openmpi) + ;; Optional + ("openblas" ,openblas) + ("gmp" ,gmp) + ("python" ,python))) + (native-inputs + `(("gfortran" ,gfortran) + ("pkg-config" ,pkg-config))) + (home-page "https://dune-project.org/") + (synopsis "Distributed and Unified Numerics Environment") + (description "DUNE, the Distributed and Unified Numerics Environment is a +modular toolbox for solving @dfn{partial differential equations} (PDEs) with +grid-based methods. It supports the easy implementation of methods like +@dfn{Finite Elements} (FE), @dfn{Finite Volumes} (FV), and also @dfn{Finite +Differences} (FD). + +This package contains the basic DUNE geometry classes.") + ;; GPL version 2 with "runtime exception" + (license license:gpl2))) |