diff options
author | Levi Baber <baberlevi@gmail.com> | 2018-05-25 14:00:12 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-05-25 14:00:12 -0500 |
commit | 6899c9e6c3fb6ff9884094ac2257782f6f5b8c24 (patch) | |
tree | ecf56ccdef61267beceea3f46427ff6e8d122f43 /var | |
parent | 468570114f1266c7a123f592e5640f88d85dc177 (diff) | |
download | spack-6899c9e6c3fb6ff9884094ac2257782f6f5b8c24.tar.gz spack-6899c9e6c3fb6ff9884094ac2257782f6f5b8c24.tar.bz2 spack-6899c9e6c3fb6ff9884094ac2257782f6f5b8c24.tar.xz spack-6899c9e6c3fb6ff9884094ac2257782f6f5b8c24.zip |
perl-text-soundex: new package (#8279)
* perl-text-soundex: new package
* perl-text-soundex: formatting
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/perl-text-soundex/package.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/perl-text-soundex/package.py b/var/spack/repos/builtin/packages/perl-text-soundex/package.py new file mode 100644 index 0000000000..33de11f788 --- /dev/null +++ b/var/spack/repos/builtin/packages/perl-text-soundex/package.py @@ -0,0 +1,37 @@ +############################################################################## +# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC. +# Produced at the Lawrence Livermore National Laboratory. +# +# This file is part of Spack. +# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. +# LLNL-CODE-647188 +# +# For details, see https://github.com/spack/spack +# Please also see the NOTICE and LICENSE files for our notice and the LGPL. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License (as +# published by the Free Software Foundation) version 2.1, February 1999. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and +# conditions of the GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +############################################################################## +from spack 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 = "http://search.cpan.org/~rjbs/Text-Soundex-3.05/Soundex.pm" + url = "http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Text-Soundex-3.05.tar.gz" + + version('3.05', 'cb40ded7a5d27aa3a411d274d6ec18ae') |