34 lines
1009 B
Python
34 lines
1009 B
Python
# Copyright 2013-2024 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("cxx", type="build") # generated
|
|
|
|
depends_on("cmake@3.5:", type="build")
|
|
depends_on("libicd")
|
|
|
|
@property
|
|
def libs(self):
|
|
# Override because libs have different case than Spack package name
|
|
name = "libQB3*"
|
|
# We expect libraries to be in either lib64 or lib directory
|
|
for root in (self.prefix.lib64, self.prefix.lib):
|
|
liblist = find_libraries(name, root=root, shared=True, recursive=False)
|
|
if liblist:
|
|
break
|
|
return liblist
|