summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorh-denpo <57649496+h-denpo@users.noreply.github.com>2020-05-09 02:22:04 +0900
committerGitHub <noreply@github.com>2020-05-08 12:22:04 -0500
commitfae55550f9a8a37617a657ebbf3b0c5ff73f7bc5 (patch)
tree1e28819ddecb0d7d861675392a6e3895b9153eb0 /var
parent652e179ae64ace2db7771754cc782eca799b2c30 (diff)
downloadspack-fae55550f9a8a37617a657ebbf3b0c5ff73f7bc5.tar.gz
spack-fae55550f9a8a37617a657ebbf3b0c5ff73f7bc5.tar.bz2
spack-fae55550f9a8a37617a657ebbf3b0c5ff73f7bc5.tar.xz
spack-fae55550f9a8a37617a657ebbf3b0c5ff73f7bc5.zip
New package (#16519)
Large Scale Assembly, Structural Correspondence, Multi Dynamics Simulator.In this program, a part of functions of ADVENTURE_Solid ver.1.1 module
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/revocap-coupler/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/revocap-coupler/package.py b/var/spack/repos/builtin/packages/revocap-coupler/package.py
new file mode 100644
index 0000000000..6bc128152d
--- /dev/null
+++ b/var/spack/repos/builtin/packages/revocap-coupler/package.py
@@ -0,0 +1,26 @@
+# 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)
+
+import os
+from spack import *
+
+
+class RevocapCoupler(AutotoolsPackage):
+ """Large Scale Assembly, Structural Correspondence,
+ Multi Dynamics Simulator.In this program,
+ a part of functions of ADVENTURE_Solid ver.1.1 module"""
+
+ homepage = "http://www.ciss.iis.u-tokyo.ac.jp/dl/index.php"
+ url = "file://{0}/REVOCAP_Coupler-2.1.tar.gz".format(os.getcwd())
+ version('2.1', sha256='9e7612d5c508ccdce23bff9ccbf62aeb635877bc2276cdc05c109de40f609f49')
+
+ depends_on('mpi')
+
+ def configure_args(self):
+ spec = self.spec
+ args = ['--with-mpicc=%s' % spec['mpi'].mpicc,
+ '--with-fortran=%s' % spec['mpi'].mpif77,
+ '--with-mpif90=%s' % spec['mpi'].mpifc]
+ return args