summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xcdf/package.py
blob: e55dd5410bd8416f3c9300114d3b1ce4092d4bc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2023 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 Xcdf(CMakePackage):
    """Binary data format designed to store data fields with user-specified accuracy."""

    homepage = "https://github.com/jimbraun/XCDF"
    url = "https://github.com/jimbraun/XCDF/archive/refs/tags/v3.00.03.tar.gz"

    license("BSD-2-Clause")

    version("3.00.03", sha256="4e445a2fea947ba14505d08177c8d5b55856f8411f28de1fe4d4c00f6824b711")

    patch("remove_python_support.patch")