27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
Source: libtext-levenshteinxs-perl
|
|
Section: perl
|
|
Priority: optional
|
|
Maintainer: OpenKylin Developers <packaging@lists.openkylin.top>
|
|
Build-Depends: debhelper-compat (= 13),
|
|
perl-xs-dev,
|
|
perl:native
|
|
Standards-Version: 3.9.5
|
|
Vcs-Browser: https://gitee.com/openkylin/libtext-levenshteinxs-perl
|
|
Vcs-Git: https://gitee.com/openkylin/libtext-levenshteinxs-perl.git
|
|
Homepage: https://metacpan.org/release/Text-LevenshteinXS
|
|
Testsuite: autopkgtest-pkg-perl
|
|
|
|
Package: libtext-levenshteinxs-perl
|
|
Architecture: any
|
|
Depends: ${misc:Depends},
|
|
${perl:Depends},
|
|
${shlibs:Depends}
|
|
Description: XS implementation of the Levenshtein edit distance
|
|
Text::LevenshteinXS implements the Levenshtein edit distance in a XS way; this
|
|
should be much faster than the pure Perl implementation.
|
|
.
|
|
The Levenshtein edit distance is a measure of the degree of proximity between
|
|
two strings. This distance is the number of substitutions, deletions or
|
|
insertions ("edits") needed to transform one string into the other one (and
|
|
vice versa). When two strings have distance 0, they are the same.
|