summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorh-denpo <57649496+h-denpo@users.noreply.github.com>2020-05-17 06:06:25 +0900
committerGitHub <noreply@github.com>2020-05-16 16:06:25 -0500
commita97ce63218dcebb3d257cb18d0dc9801528db449 (patch)
treedbd525f3b8fcadea798f56b9040c2edc177c780e /var
parent6ca1052999d25912b3e3233cec3e1dad10d47356 (diff)
downloadspack-a97ce63218dcebb3d257cb18d0dc9801528db449.tar.gz
spack-a97ce63218dcebb3d257cb18d0dc9801528db449.tar.bz2
spack-a97ce63218dcebb3d257cb18d0dc9801528db449.tar.xz
spack-a97ce63218dcebb3d257cb18d0dc9801528db449.zip
New package frontistr (#16660)
"""Open-Source Large-Scale Parallel FEM Program for Nonlinear Structural Analysis"""
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/frontistr/package.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/frontistr/package.py b/var/spack/repos/builtin/packages/frontistr/package.py
new file mode 100644
index 0000000000..0a0cf7d628
--- /dev/null
+++ b/var/spack/repos/builtin/packages/frontistr/package.py
@@ -0,0 +1,33 @@
+# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+
+from spack import *
+
+
+class Frontistr(CMakePackage):
+ """Open-Source Large-Scale Parallel FEM Program for
+ Nonlinear Structural Analysis"""
+
+ homepage = "https://github.com/FrontISTR/FrontISTR"
+ git = "https://github.com/FrontISTR/FrontISTR.git"
+
+ version('5.0', tag='v5.0')
+
+ depends_on('mpi')
+ depends_on('revocap-refiner')
+ depends_on('revocap-coupler')
+ depends_on('blas')
+ depends_on('metis')
+ depends_on('scalapack')
+ depends_on('mumps +mpi')
+ depends_on('trilinos')
+
+ def cmake_args(self):
+ define = CMakePackage.define
+ cmake_args = [
+ define('WITH_ML', True),
+ ]
+ return cmake_args