summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-10-12 19:40:05 -0500
committerGitHub <noreply@github.com>2019-10-12 19:40:05 -0500
commit18ab37596855451c45210a2a107b3ecf61d698a3 (patch)
tree97ecc1b059d2b720e555abe4c2be58be2ead2717 /var
parent1808ba3c68c8a063157328883788eef4439785a9 (diff)
downloadspack-18ab37596855451c45210a2a107b3ecf61d698a3.tar.gz
spack-18ab37596855451c45210a2a107b3ecf61d698a3.tar.bz2
spack-18ab37596855451c45210a2a107b3ecf61d698a3.tar.xz
spack-18ab37596855451c45210a2a107b3ecf61d698a3.zip
Add utf8proc package (#13144)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/utf8proc/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/utf8proc/package.py b/var/spack/repos/builtin/packages/utf8proc/package.py
new file mode 100644
index 0000000000..2a48842c44
--- /dev/null
+++ b/var/spack/repos/builtin/packages/utf8proc/package.py
@@ -0,0 +1,18 @@
+# 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 Utf8proc(CMakePackage):
+ """A clean C library for processing UTF-8 Unicode data:
+ normalization, case-folding, graphemes, and more"""
+
+ homepage = "https://juliastrings.github.io/utf8proc/"
+ url = "https://github.com/JuliaStrings/utf8proc/archive/v2.4.0.tar.gz"
+
+ version('2.4.0', sha256='b2e5d547c1d94762a6d03a7e05cea46092aab68636460ff8648f1295e2cdfbd7')
+
+ depends_on('cmake@2.8.12:', type='build')