README 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. Text::WagnerFischer is an implementation of the Wagner-Fischer edit distance in Perl.
  2. PREREQUISITES
  3. This suite requires Perl 5; I tested it only under Perl 5.6.
  4. Text::WagnerFischer does not use any nonstandard modules.
  5. INSTALLATION
  6. You install Text::WagnerFischer by running these commands in the *nix environment:
  7. perl Makefile.PL
  8. make
  9. make test (optional)
  10. make install
  11. To install Text::WagnerFischer in the Win32 environment, use nmake instead of make.
  12. nmake is available for free (in a self extracting executable):
  13. <http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe>
  14. After download and inflate, put nmake.exe and nmake.err somewhere in your path.
  15. DOCUMENTATION
  16. POD format documentation is included in WagnerFischer.pm.
  17. POD is readable with the command:
  18. perldoc Text::WagnerFischer
  19. AVAILABILITY
  20. The latest version of Text::WagnerFischer is available from the
  21. CPAN <http://search.cpan.org/>
  22. COPYRIGHT
  23. Copyright 2002,2003 Dree Mistrut <dree@friul.it>
  24. This package is free software and is provided "as is" without express
  25. or implied warranty. You can redistribute it and/or modify it under
  26. the same terms as Perl itself.