summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ufo-core/package.py
blob: c4bb99804bc9623c268e165a0d00304b4deecb41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 UfoCore(CMakePackage):
    """The UFO data processing framework is a C library suited to build general
    purpose streams data processing on heterogeneous architectures such as
    CPUs, GPUs or clusters. This package contains the run-time system and
    development files."""

    homepage = "https://ufo.kit.edu"
    url = "https://github.com/ufo-kit/ufo-core/archive/v0.14.0.tar.gz"

    license("LGPL-3.0-only")

    version("0.14.0", sha256="3bf0d1924d6ae3f51673cc8b0b31b17873e79f1a0129a9af54b4062b1b2b3ad7")

    depends_on("glib")
    depends_on("json-glib")