summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-text-soundex/package.py
blob: 45481d074fc59aea8a0ec83ad1a959e589d278fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2024 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 PerlTextSoundex(PerlPackage):
    """Soundex is a phonetic algorithm for indexing names by sound, as
    pronounced in English. The goal is for names with the same
    pronunciation to be encoded to the same representation so
    that they can be matched despite minor differences in spelling"""

    homepage = "https://metacpan.org/pod/Text::Soundex"
    url = "http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Text-Soundex-3.05.tar.gz"

    license("GPL-1.0-or-later OR Artistic-1.0-Perl")

    version("3.05", sha256="f6dd55b4280b25dea978221839864382560074e1d6933395faee2510c2db60ed")