summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libabigail/package.py
blob: 48ea8664bdd8e3936a53bcbd467f373ad0c65725 (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
24
25
26
27
28
# Copyright 2013-2021 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 import *


class Libabigail(AutotoolsPackage):
    """The ABI Generic Analysis and Instrumentation Library"""

    homepage = "https://sourceware.org/libabigail"
    url      = "https://mirrors.kernel.org/sourceware/libabigail/libabigail-1.8.tar.gz"

    version('1.8', sha256='1cbf260b894ccafc61b2673ba30c020c3f67dbba9dfa88dca3935dff661d665c')

    variant('docs', default=False, description='build documentation')

    depends_on('elfutils', type=('build', 'link'))
    depends_on('libdwarf')
    depends_on('libxml2')

    # Libabigail won't generate it's bin without Python
    depends_on('python@3.8:')

    # Documentation dependencies
    depends_on('doxygen', type="build", when="+docs")
    depends_on('py-sphinx', type='build', when="+docs")