summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libcroco/package.py
blob: 0b7e05eb389e1fec3c4b1fdeb226ea059eb2dd1d (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# 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 Libcroco(AutotoolsPackage):
    """Libcroco is a standalone css2 parsing and manipulation library."""

    homepage = "https://developer.gnome.org/libcroco"
    url = "http://ftp.gnome.org/pub/gnome/sources/libcroco/0.6/libcroco-0.6.12.tar.xz"

    license("LGPL-2.0-or-later")

    version("0.6.13", sha256="767ec234ae7aa684695b3a735548224888132e063f92db585759b422570621d4")
    version("0.6.12", sha256="ddc4b5546c9fb4280a5017e2707fbd4839034ed1aba5b7d4372212f34f84f860")

    variant("doc", default=False, description="Build documentation with gtk-doc")

    depends_on("glib")
    depends_on("libxml2")
    depends_on("gtk-doc", type="build", when="+doc")
    depends_on("docbook-xml", type="build", when="+doc")
    depends_on("docbook-xsl", type="build", when="+doc")
    depends_on("py-pygments", type="build", when="+doc")
    depends_on("pkgconfig", type="build")

    def configure_args(self):
        config_args = []
        if "+doc" in self.spec:
            config_args.extend(
                [
                    "--enable-gtk-doc",
                    "--enable-gtk-doc-html",
                    # PDF not supported in gtk-doc
                    "--disable-gtk-doc-pdf",
                ]
            )
        else:
            config_args.extend(
                ["--disable-gtk-doc", "--disable-gtk-doc-html", "--disable-gtk-doc-pdf"]
            )

        # macOS ld does not support this flag
        # https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/libcroco.rb
        if self.spec.satisfies("platform=darwin"):
            config_args.append("--disable-Bsymbolic")

        return config_args