summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorFederico Ficarelli <federico.ficarelli@gmail.com>2018-03-22 13:36:59 +0100
committerAdam J. Stewart <ajstewart426@gmail.com>2018-03-22 07:36:59 -0500
commit9280eba2146e630a83de766af715eae291b08e04 (patch)
tree557035b908ec4186c101e06c27d5949723e498b9 /var
parentaa84ddffed1fe421a26c4169ae94540beae8def1 (diff)
downloadspack-9280eba2146e630a83de766af715eae291b08e04.tar.gz
spack-9280eba2146e630a83de766af715eae291b08e04.tar.bz2
spack-9280eba2146e630a83de766af715eae291b08e04.tar.xz
spack-9280eba2146e630a83de766af715eae291b08e04.zip
tcl-tclxml: new package (#7557)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/tcl-tclxml/package.py58
1 files changed, 58 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/tcl-tclxml/package.py b/var/spack/repos/builtin/packages/tcl-tclxml/package.py
new file mode 100644
index 0000000000..8012d67a2e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/tcl-tclxml/package.py
@@ -0,0 +1,58 @@
+##############################################################################
+# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/spack/spack
+# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+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', '9d1605246c899eff7db591bca3c23200')
+ version('3.1', '35de63a4ceba7a6fdb85dd1a62f2e881')
+
+ 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),
+ ]