brunsli: add new package (#31240)

This commit is contained in:
Adam J. Stewart 2022-06-27 09:44:03 -07:00 committed by GitHub
parent 7bce92ad46
commit 78882c5569
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,23 @@
# 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 Brunsli(CMakePackage):
"""Brunsli is a lossless JPEG repacking library."""
homepage = "https://github.com/google/brunsli"
git = "https://github.com/google/brunsli.git"
version('0.1', tag='v0.1', submodules=True)
depends_on('cmake@3.1:', type='build')
@property
def libs(self):
return find_libraries(
['libbrunslidec-c', 'libbrunslienc-c'], root=self.prefix, recursive=True
)