89454af0a4
Text::Levenshtein implements the Levenshtein edit distance. 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. WWW: http://search.cpan.org/dist/Text-Levenshtein/
21 lines
430 B
Makefile
21 lines
430 B
Makefile
# New ports collection makefile for: p5-Text-Levenshtein
|
|
# Date created: 2011-10-15
|
|
# Whom: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Text-Levenshtein
|
|
PORTVERSION= 0.05
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= An implementation of the Levenshtein edit distance
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= Text::Levenshtein.3
|
|
|
|
.include <bsd.port.mk>
|