• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..11-Apr-2013244

ChangesH A D20-Feb-2013365

LevenshteinXS.pmH A D20-Feb-20131.7 KiB

LevenshteinXS.xsH A D20-Feb-20131.5 KiB

Makefile.PLH A D20-Feb-2013451

MANIFESTH A D20-Feb-2013164

META.ymlH A D20-Feb-2013347

READMEH A D20-Feb-20131.4 KiB

test.plH A D20-Feb-2013372

README

1
2Text::LevenshteinXS is an XS implementation of the Levenshtein edit distance in Perl.
3A good point to start is: <http://www.merriampark.com/ld.htm>
4
5See also Text::Levenshtein on CPAN for a pure Perl version of this module. 
6
7
8PREREQUISITES
9
10This suite requires Perl 5; I tested it only under Perl 5.6.
11
12Text::LevenshteinXS requires the Test module.
13
14A C compiler.
15
16
17INSTALLATION
18
19You install Text::LevenshteinXS by running these commands in the *nix environment:
20
21   perl Makefile.PL
22   make
23   make test (optional)
24   make install
25
26To install Text::LevenshteinXS in the Win32 environment, use nmake instead of make.
27nmake is available for free (in a self extracting executable):
28<http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe>
29After download and inflate, put nmake.exe and nmake.err in c:\windows\command .
30You need also a C compiler (e.g. Visual C++).
31
32
33DOCUMENTATION
34
35POD format documentation is included in LevenshteinXS.pm.  
36POD is readable with the command:
37
38  perldoc Text::LevenshteinXS
39
40
41AVAILABILITY
42
43The latest version of Text::LevenshteinXS is available from the
44CPAN <http://search.cpan.org/> 
45
46
47COPYRIGHT
48
49Copyright 2003 Dree Mistrut <dree@friul.it>
50
51This package is free software and is provided "as is" without express
52or implied warranty.  You can redistribute it and/or modify it under 
53the same terms as Perl itself.
54
55