summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2019-12-28 12:20:20 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2019-12-28 12:20:20 -0600
commitbd345e16b830fe36911354809a86803d5d80a54a (patch)
treef0e99bfcce081d377f32fb4fc995c549d061e9b8 /var
parent12692424a7e19dedaa6891ea9787d93d77ac5f66 (diff)
downloadspack-bd345e16b830fe36911354809a86803d5d80a54a.tar.gz
spack-bd345e16b830fe36911354809a86803d5d80a54a.tar.bz2
spack-bd345e16b830fe36911354809a86803d5d80a54a.tar.xz
spack-bd345e16b830fe36911354809a86803d5d80a54a.zip
New package - TECkit (#14301)
This PR adds the teckit package to spack.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/teckit/package.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/teckit/package.py b/var/spack/repos/builtin/packages/teckit/package.py
new file mode 100644
index 0000000000..aac1dd536c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/teckit/package.py
@@ -0,0 +1,29 @@
+# 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 Teckit(AutotoolsPackage):
+ """TECkit is a low-level toolkit intended to be used by applications for
+ conversions between text encodings. For example, it can be used when
+ importing legacy text into a Unicode-based application.
+
+ The primary component of TECkit is a library: the TECkit engine. The engine
+ relies on mapping tables in a specific, documented binary format. The
+ TECkit compiler creates these tables from plain-text, human-readable
+ descriptions."""
+
+ homepage = "https://scripts.sil.org/cms/scripts/page.php?cat_id=TECkit"
+ url = "https://github.com/silnrsi/teckit/releases/download/v2.5.9/teckit-2.5.9.tar.gz"
+
+ version('2.5.9', sha256='6823fb3142efa34e5d74de35d37cdf4724efbf577f5ff15a8e2b364e6ef47d3d')
+
+ depends_on('expat')
+ depends_on('zlib')
+
+ def configure_args(self):
+ args = ['--with-system-zlib']
+ return args