summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/hyphen/package.py
blob: 4974c8674b226070ddcef444f47826b29373feaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2022 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.package 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')