spack/var/spack/repos/builtin/packages/qcat/package.py
Robert Underwood da6aeaad44
Initial contribution of LibPressio ecosystem (#32630)
* Add libpressio and dependencies; some of these packages are
  maintained as forks of the original repositories and in those
  cases the docstring mentions this.
* Add optional dependency in adios2 on libpressio
* cub package: set CUB_DIR environment variable for dependent
  installations
* Clear R_HOME/R_ENVIRON before Spack installation (avoid sources
  outside of Spack from affecting the installation in Spack)
* Rename dlib to dorian3d-dlib and update dependents; add new dlib
  implementation. Pending an official policy on how to handle
  packages with short names, reviewer unilaterally decided that
  the rename was acceptable given that the new Spack dlib package
  is referenced more widely (by orders of magnitude) than the
  original

Co-authored-by: Samuel Li <shaomeng@users.noreply.github.com>
2022-10-17 13:30:54 -06:00

25 lines
683 B
Python

# Copyright 2013-2022 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.package import *
class Qcat(CMakePackage):
"""Quick data compression quality analysis tool"""
homepage = "https://github.com/szcompressor/qcat"
git = "https://github.com/szcompressor/qcat"
maintainers = ["disheng222", "robertu94"]
version("master", branch="master")
version("1.4", commit="f16032cf237837b1d32dde0c3daa6ad1ca4a912f")
depends_on("zstd")
def cmake_args(self):
args = ["-DQCAT_USE_BUNDLES=OFF"]
return args