summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2021-03-20 20:23:41 +0800
committerGitHub <noreply@github.com>2021-03-20 13:23:41 +0100
commitf8a17371f61ece7239ed0655ab6904cade3abb90 (patch)
treea43f290a0c2cf9db3ea6a75d50754a1a962662ef
parentaa79689c78104339e41b6d25218e84186a38dc10 (diff)
downloadspack-f8a17371f61ece7239ed0655ab6904cade3abb90.tar.gz
spack-f8a17371f61ece7239ed0655ab6904cade3abb90.tar.bz2
spack-f8a17371f61ece7239ed0655ab6904cade3abb90.tar.xz
spack-f8a17371f61ece7239ed0655ab6904cade3abb90.zip
hyphen: new package (#22157)
-rw-r--r--var/spack/repos/builtin/packages/hyphen/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hyphen/package.py b/var/spack/repos/builtin/packages/hyphen/package.py
new file mode 100644
index 0000000000..60550fd181
--- /dev/null
+++ b/var/spack/repos/builtin/packages/hyphen/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2021 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 Hyphen(AutotoolsPackage):
+ """A library of text hyphenation."""
+
+ homepage = "https://hunspell.github.io"
+ url = "https://downloads.sourceforge.net/hunspell/hyphen-2.8.8.tar.gz"
+ git = "https://github.com/hunspell/hyphen.git"
+
+ version('master', branch='master')
+ version('2.8.8', sha256='304636d4eccd81a14b6914d07b84c79ebb815288c76fe027b9ebff6ff24d5705')
+
+ depends_on('m4', type='build')
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')