spack/var/spack/repos/builtin/packages/openfdtd/package.py
Todd Gamblin a8ccb8e116 copyrights: update all files with license headers for 2021
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files
- [x] update all licensed files to say 2013-2021 using
      `spack license update-copyright-year`
- [x] appease mypy with some additions to package.py that needed
      for oneapi.py
2021-01-02 12:12:00 -08:00

52 lines
2.0 KiB
Python

# Copyright 2013-2021 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 Openfdtd(MakefilePackage):
"""OpenFDTD is general purpose FDTD simulator applicable to a wide range
of applications. The FDTD method (Finite Difference Time Domain method)
is a method for numerically calculating the Maxwell equation, which is
the basic equation of the electromagnetic field,
by the difference method."""
homepage = "http://www.e-em.co.jp/OpenFDTD/"
url = "http://www.e-em.co.jp/OpenFDTD/OpenFDTD.zip"
version('2.6.0', sha256='92f7b92dc55ff6d8fc8c31eda77ca10fe25a5f54b002f2523a3d67f485d77e9f')
version('2.3.0', sha256='10ac70f2ed7160da87dd9222a5a17ca7b72365ee886235359afc48c4fb7b4be4',
url='http://www.e-em.co.jp/OpenFDTD/old/OpenFDTD_230.zip')
variant('mpi', default=False, description='Build with MPI Support')
depends_on('mpi', when='+mpi')
def edit(self, spec, prefix):
filter_file('gcc', spack_cc, './src/Makefile_gcc')
if '+mpi' in self.spec:
filter_file('mpicc', spec['mpi'].mpicc, './mpi/Makefile_gcc')
# Openfdtd has "Makefile" and "Makefile_gcc".
# "Makefile" is used only in Windows development environment.
# The build in Windows development environment is currently unsupported.
def build(self, spec, prefix):
with working_dir('src'):
make('-f', 'Makefile_gcc')
# To make an executable file for mpi needs object files
# which are made for an executable file not for mpi.
# Therefore, the build in the "src" directory is necessary
# for to make an executable file for mpi.
if '+mpi' in self.spec:
with working_dir('mpi'):
make('-f', 'Makefile_gcc')
def install(self, spec, prefix):
mkdirp(prefix.bin)
install('ofd', prefix.bin)
if '+mpi' in self.spec:
install('ofd_mpi', prefix.bin)