summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/libdicom/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libdicom/package.py b/var/spack/repos/builtin/packages/libdicom/package.py
new file mode 100644
index 0000000000..4ee90bfebf
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libdicom/package.py
@@ -0,0 +1,27 @@
+# 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 Libdicom(MesonPackage):
+ """libdicom is a C library and a set of command-line tools for reading DICOM WSI files."""
+
+ homepage = "https://github.com/ImagingDataCommons/libdicom"
+ url = "https://github.com/ImagingDataCommons/libdicom/archive/refs/tags/v1.0.5.tar.gz"
+
+ license("MIT")
+
+ version("1.0.5", sha256="ebf5f7c0d1a0f802c1801f2f762537f014f2a431be3e063142f6ed3c96878abb")
+
+ depends_on("meson@0.50:", type="build")
+ depends_on("ninja", type="build")
+ depends_on("pkgconfig", type="build")
+ depends_on("cmake", type="build")
+ depends_on("uthash")
+ depends_on("check@0.9.6:", type=("build", "test"))
+
+ def meson_args(self):
+ return ["-Dwrap_mode=nofallback"]