diff options
author | Jen Herting <jen@herting.cc> | 2022-08-03 06:30:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 04:30:05 -0600 |
commit | 09c56255c309aa37ee63658d445ebdd2184368cc (patch) | |
tree | 247cf1dd023e85d51eabfe38d1f21913af8bfa31 | |
parent | 080a26a314df3522d413d12bae37153ec22d00e1 (diff) | |
download | spack-09c56255c309aa37ee63658d445ebdd2184368cc.tar.gz spack-09c56255c309aa37ee63658d445ebdd2184368cc.tar.bz2 spack-09c56255c309aa37ee63658d445ebdd2184368cc.tar.xz spack-09c56255c309aa37ee63658d445ebdd2184368cc.zip |
libspng: add new package (#31878)
Co-authored-by: James A Zilberman <jazrc@rit.edu>
Co-authored-by: qwertos <qwertos@users.noreply.github.com>
-rw-r--r-- | var/spack/repos/builtin/packages/libspng/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libspng/package.py b/var/spack/repos/builtin/packages/libspng/package.py new file mode 100644 index 0000000000..03f8da60c8 --- /dev/null +++ b/var/spack/repos/builtin/packages/libspng/package.py @@ -0,0 +1,17 @@ +# 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 Libspng(CMakePackage): + """libspng (simple png) is a C library for reading and writing + Portable Network Graphics (PNG) format files with a focus on + security and ease of use.""" + + homepage = "https://github.com/randy408/libspng" + url = "https://github.com/randy408/libspng/archive/refs/tags/v0.7.2.tar.gz" + + version("0.7.2", sha256="4acf25571d31f540d0b7ee004f5461d68158e0a13182505376805da99f4ccc4e") |