summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libicd/package.py
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2022-11-13 13:56:11 -0600
committerGitHub <noreply@github.com>2022-11-13 13:56:11 -0600
commited28797f8332f234830b6be126bf9d95ffbf86b4 (patch)
tree2f6ae368573aed1a2caca39cf05b57163fc551da /var/spack/repos/builtin/packages/libicd/package.py
parenteadb6ae774ed7c138c172f186063fe6ed3008aa6 (diff)
downloadspack-ed28797f8332f234830b6be126bf9d95ffbf86b4.tar.gz
spack-ed28797f8332f234830b6be126bf9d95ffbf86b4.tar.bz2
spack-ed28797f8332f234830b6be126bf9d95ffbf86b4.tar.xz
spack-ed28797f8332f234830b6be126bf9d95ffbf86b4.zip
GDAL: add v3.6.0 (#33856)
* GDAL: add v3.6.0 * Explicitly control BASISU * More reasonable variant defaults
Diffstat (limited to 'var/spack/repos/builtin/packages/libicd/package.py')
-rw-r--r--var/spack/repos/builtin/packages/libicd/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libicd/package.py b/var/spack/repos/builtin/packages/libicd/package.py
new file mode 100644
index 0000000000..925f1f5067
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libicd/package.py
@@ -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 Libicd(CMakePackage):
+ """Image codec library."""
+
+ homepage = "https://github.com/lucianpls/libicd"
+ git = "https://github.com/lucianpls/libicd.git"
+
+ version("main", branch="main")
+
+ depends_on("cmake@3.5:", type="build")
+ depends_on("jpeg")
+ depends_on("libpng")
+ depends_on("lerc")
+
+ # https://github.com/lucianpls/libicd/issues/3
+ conflicts("platform=darwin")