
Add language dependencies `c`, `cxx`, and `fortran`. These `depends_on` statements are auto-generated based on file extensions found in source tarballs/zipfiles. The `# generated` comment can be removed by package maintainers after validating correctness.
33 lines
1.2 KiB
Python
33 lines
1.2 KiB
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 Lerc(CMakePackage):
|
|
"""Limited Error Raster Compression.
|
|
|
|
LERC is an open-source image or raster format which supports rapid encoding
|
|
and decoding for any pixel type (not just RGB or Byte). Users set the maximum
|
|
compression error per pixel while encoding, so the precision of the original
|
|
input image is preserved (within user defined error bounds)."""
|
|
|
|
homepage = "https://github.com/Esri/lerc"
|
|
url = "https://github.com/Esri/lerc/archive/refs/tags/v3.0.tar.gz"
|
|
|
|
license("Apache-2.0")
|
|
|
|
version("4.0.0", sha256="91431c2b16d0e3de6cbaea188603359f87caed08259a645fd5a3805784ee30a0")
|
|
version("3.0", sha256="8c0148f5c22d823eff7b2c999b0781f8095e49a7d3195f13c68c5541dd5740a1")
|
|
|
|
depends_on("cxx", type="build") # generated
|
|
|
|
depends_on("cmake@3.11:", type="build")
|
|
depends_on("cmake@3.12:", type="build", when="@4.0.0:")
|
|
|
|
@property
|
|
def libs(self):
|
|
return find_libraries(["libLerc"], root=self.prefix, recursive=True)
|