• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

eg/H26-Mar-2004-127

t/H03-May-2022-5950

ChangesH A D26-Mar-20041,014 3325

DoubleMetaphone.pmH A D26-Mar-20042.9 KiB11431

DoubleMetaphone.xsH A D15-Jun-2001868 5341

MANIFESTH A D16-Jun-2001151 1312

Makefile.PLH A D16-Jun-2001554 1512

READMEH A D23-May-20011.5 KiB5637

double_metaphone.cH A D26-Mar-200426.6 KiB1,196986

double_metaphone.hH A D16-Jun-2001275 2114

typemapH A D23-May-200122 21

README

1DESCRIPTION
2
3  This module implements a "sounds like" algorithm developed
4  by Lawrence Philips which he published in the June, 2000 issue
5  of C/C++ Users Journal.  Double Metaphone is an improved
6  version of Philips' original Metaphone algorithm.
7
8COPYRIGHT
9
10  Copyright 2000, Maurice Aubrey <maurice@hevanet.com>.
11  All rights reserved.
12
13  This code is based heavily on the C++ implementation by
14  Lawrence Philips and incorporates several bug fixes courtesy
15  of Kevin Atkinson <kevina@users.sourceforge.net>.
16
17  This module is free software; you may redistribute it and/or
18  modify it under the same terms as Perl itself.
19
20PREREQUISITES
21
22  This module requires a C compiler.
23
24INSTALLATION
25
26  To install this module, move into the directory where this file is
27  located and type the following:
28
29        perl Makefile.PL
30        make
31        make test
32        make install
33
34  This will install the module into the Perl library directory.  If
35  you lack sufficient privileges for this, then you can specify an
36  alternate directory like this:
37
38        perl Makefile.PL PREFIX=/where/I/want/it/put
39        make
40        make test
41        make install
42
43  Once installed, you can use the following line to load the module into
44  your scripts:
45
46        use Text::DoubleMetaphone qw( double_metaphone );
47
48  If you installed the module into an alternative directory, you will
49  need to let Perl know where it can be found:
50
51        use lib "/path/to/my/modules";
52        use Text::DoubleMetaphone qw( double_metaphone );
53
54  See the POD documentation for further details.
55
56