summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/babeltrace/package.py
blob: af0552d6a01f90553f931005f2ac65d1d27d293b (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-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 Babeltrace(AutotoolsPackage):
    """Babeltrace is a trace viewer and converter reading and writing the
    Common Trace Format (CTF). Its main use is to pretty-print CTF traces
    into a human-readable text output ordered by time."""

    homepage = "https://www.efficios.com/babeltrace"
    url = "https://www.efficios.com/files/babeltrace/babeltrace-1.2.4.tar.bz2"

    license("MIT")

    version("1.2.4", sha256="666e3a1ad2dc7d5703059963056e7800f0eab59c8eeb6be2efe4f3acc5209eb1")

    depends_on("glib@2.22:", type=("build", "link"))
    depends_on("uuid")
    depends_on("popt")