libdicom: add new package (#41937)
This commit is contained in:
parent
861979a24f
commit
d51d3dd1fb
1 changed files with 27 additions and 0 deletions
27
var/spack/repos/builtin/packages/libdicom/package.py
Normal file
27
var/spack/repos/builtin/packages/libdicom/package.py
Normal file
|
@ -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"]
|
Loading…
Reference in a new issue