summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tcl-tclxml/package.py
blob: c886aab99775e7937787ea58344ff42a195a28b2 (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
# 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 TclTclxml(AutotoolsPackage):
    """TclXML is an API for parsing XML documents using the Tcl scripting
    language. It is also a package including a DOM implementation (TclDOM) and
    XSL Transformations (TclXSLT). These allow Tcl scripts to read, manipulate
    and write XML documents."""

    homepage = "http://tclxml.sourceforge.net/tclxml.html"
    url = "https://sourceforge.net/projects/tclxml/files/TclXML/3.2/tclxml-3.2.tar.gz"
    list_url = "https://sourceforge.net/projects/tclxml/files/TclXML/"
    list_depth = 1

    version("3.2", sha256="f4116b6680b249ce74b856a121762361ca09e6256f0c8ad578d1c661b822cb39")
    version("3.1", sha256="9b017f29c7a06fa1a57d1658bd1d3867297c26013604bdcc4d7b0ca2333552c9")

    extends("tcl")

    depends_on("tcl-tcllib")
    depends_on("libxml2")
    depends_on("libxslt")

    # Results in C99 build error
    conflicts("%apple-clang@12:")

    def configure_args(self):
        return [
            "--exec-prefix={0}".format(self.prefix),
            "--with-tcl={0}".format(self.spec["tcl"].libs.directories[0]),
            "--with-xml2-config={0}".format(self.spec["libxml2"].prefix.bin.join("xml2-config")),
            "--with-xslt-config={0}".format(self.spec["libxslt"].prefix.bin.join("xslt-config")),
        ]