diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2021-10-27 11:48:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-27 16:48:44 +0000 |
commit | 1fcc9c655220ffa0bc03e854b6b729176cc21880 (patch) | |
tree | 54f94088ca45fedea3926150ecd75cbd840ed6ad | |
parent | 1842785eae36cc5c4687437f0ca0c4373209433b (diff) | |
download | spack-1fcc9c655220ffa0bc03e854b6b729176cc21880.tar.gz spack-1fcc9c655220ffa0bc03e854b6b729176cc21880.tar.bz2 spack-1fcc9c655220ffa0bc03e854b6b729176cc21880.tar.xz spack-1fcc9c655220ffa0bc03e854b6b729176cc21880.zip |
hdf5-vol-log: add new package (#26956)
-rw-r--r-- | var/spack/repos/builtin/packages/hdf5-vol-log/package.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hdf5-vol-log/package.py b/var/spack/repos/builtin/packages/hdf5-vol-log/package.py new file mode 100644 index 0000000000..c65ff31628 --- /dev/null +++ b/var/spack/repos/builtin/packages/hdf5-vol-log/package.py @@ -0,0 +1,32 @@ +# 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 Hdf5VolLog(AutotoolsPackage): + """Log-based VOL - an HDF5 VOL Plugin that stores HDF5 datasets in a log-based + storage layout.""" + + homepage = 'https://github.com/DataLib-ECP/vol-log-based' + url = 'https://github.com/DataLib-ECP/vol-log-based' + git = 'https://github.com/DataLib-ECP/vol-log-based.git' + maintainers = ['hyoklee'] + + version('master', commit='b13778efd9e0c79135a9d7352104985408078d45') + + depends_on('hdf5@1.12.1:') + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') + + def configure_args(self): + args = [] + + args.append('--enable-shared') + args.append('--enable-zlib') + + return args |