xdmf3: new package (#12778)
This commit is contained in:
parent
9675db4e7f
commit
76b79c125a
1 changed files with 44 additions and 0 deletions
44
var/spack/repos/builtin/packages/xdmf3/package.py
Normal file
44
var/spack/repos/builtin/packages/xdmf3/package.py
Normal file
|
@ -0,0 +1,44 @@
|
|||
# Copyright 2013-2019 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 Xdmf3(CMakePackage):
|
||||
"""XDMF, or eXtensible Data Model and Format (XDMF), is a common data model
|
||||
format to exchange scientific data between High Performance Computing
|
||||
codes and tools.
|
||||
"""
|
||||
|
||||
homepage = "http://xdmf.org"
|
||||
url = "https://gitlab.kitware.com/xdmf/xdmf/-/archive/master/xdmf-master.tar.bz2"
|
||||
git = "https://gitlab.kitware.com/xdmf/xdmf.git"
|
||||
|
||||
# There is no official release of XDMF and development has largely ceased,
|
||||
# but the current version, 3.x, is maintained on the master branch.
|
||||
version('2019-01-14', '8d9c98081d89ac77a132d56bc8bef53581db4078')
|
||||
|
||||
variant('shared', default=True, description='Enable shared libraries')
|
||||
variant('mpi', default=True, description='Enable MPI')
|
||||
|
||||
depends_on('libxml2')
|
||||
depends_on('boost')
|
||||
depends_on('mpi', when='+mpi')
|
||||
depends_on('hdf5+mpi', when='+mpi')
|
||||
depends_on('hdf5~mpi', when='~mpi')
|
||||
|
||||
def cmake_args(self):
|
||||
"""Populate cmake arguments for XDMF."""
|
||||
spec = self.spec
|
||||
|
||||
cmake_args = [
|
||||
'-DBUILD_SHARED_LIBS=%s' % str('+shared' in spec),
|
||||
'-DXDMF_BUILD_UTILS=ON',
|
||||
'-DXDMF_WRAP_JAVA=OFF',
|
||||
'-DXDMF_WRAP_PYTHON=OFF',
|
||||
'-DXDMF_BUILD_TESTING=ON'
|
||||
]
|
||||
|
||||
return cmake_args
|
Loading…
Reference in a new issue