summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
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