New package frontistr (#16660)

"""Open-Source Large-Scale Parallel FEM Program for
        Nonlinear Structural Analysis"""
This commit is contained in:
h-denpo 2020-05-17 06:06:25 +09:00 committed by GitHub
parent 6ca1052999
commit a97ce63218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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