
- [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
23 lines
632 B
Python
23 lines
632 B
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 Pidx(CMakePackage):
|
|
"""PIDX Parallel I/O Library.
|
|
|
|
PIDX is an efficient parallel I/O library that reads and writes
|
|
multiresolution IDX data files.
|
|
"""
|
|
|
|
homepage = "http://www.cedmav.com/pidx"
|
|
git = "https://github.com/sci-visus/PIDX.git"
|
|
|
|
version('1.0', commit='6afa1cf71d1c41263296dc049c8fabaf73c296da')
|
|
|
|
depends_on('cmake@2.8.4:', type='build')
|
|
depends_on('mpi')
|