summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMelven Roehrig-Zoellner <Melven.Roehrig-Zoellner@DLR.de>2020-03-16 09:02:10 +0100
committerGitHub <noreply@github.com>2020-03-16 09:02:10 +0100
commit0301ec32b42d46ffb1f497112be71e3406eb4ce6 (patch)
tree858e48f1389bc9bc72839e94c2a261d4deb13f91
parent77e845d53cec7b12009b404ab128805195c69739 (diff)
downloadspack-0301ec32b42d46ffb1f497112be71e3406eb4ce6.tar.gz
spack-0301ec32b42d46ffb1f497112be71e3406eb4ce6.tar.bz2
spack-0301ec32b42d46ffb1f497112be71e3406eb4ce6.tar.xz
spack-0301ec32b42d46ffb1f497112be71e3406eb4ce6.zip
tixi: added package at v3.0.3 (#15490)
-rw-r--r--var/spack/repos/builtin/packages/tixi/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/tixi/package.py b/var/spack/repos/builtin/packages/tixi/package.py
new file mode 100644
index 0000000000..74a7ed7c65
--- /dev/null
+++ b/var/spack/repos/builtin/packages/tixi/package.py
@@ -0,0 +1,24 @@
+# Copyright 2013-2020 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 Tixi(CMakePackage):
+ """TiXI is a fast and simple XML interface library and could be used
+ from applications written in C, C++, Fortran, JAVA and Python. """
+
+ homepage = "https://github.com/DLR-SC/tixi"
+ url = "https://github.com/DLR-SC/tixi/archive/v3.0.3.tar.gz"
+ git = "https://github.com/DLR-SC/tixi.git"
+
+ version('3.0.3', sha256='3584e0cec6ab811d74fb311a9af0663736b1d7f11b81015fcb378efaf5ad3589')
+ version('2.2.4', sha256='9080d2a617b7c411b9b4086de23998ce86e261b88075f38c73d3ce25da94b21c')
+
+ depends_on('python', type='build')
+ depends_on('expat')
+ depends_on('curl')
+ depends_on('libxml2')
+ depends_on('libxslt')