summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tcl-tclxml/package.py
blob: a11268bfb3a62c05e3c60b9835650510481aa38e (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
# Copyright 2013-2019 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 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')

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