summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/qb3/package.py
blob: 7f486d8a6f19a9702f68875941689601fb873679 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2023 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 Qb3(CMakePackage):
    """QB3: Fast and Efficient Raster Compression."""

    homepage = "https://github.com/lucianpls/QB3"
    git = "https://github.com/lucianpls/QB3.git"

    license("Apache-2.0")

    version("master", branch="master")

    depends_on("cmake@3.5:", type="build")
    depends_on("libicd")