c6a1d53d4a
Typically this is in string similarity exercises, but they're pretty versatile. The algorithms are: * Soundex * NYSIIS * Double Metaphone Based on Maurice Aubrey's C code from his perl implementation. WWW: https://pypi.python.org/pypi/Fuzzy PR: 215462 Submitted by: yuri@rawbw.com
21 lines
442 B
Makefile
21 lines
442 B
Makefile
# Created by: Yuri Victorovich <yuri@rawbw.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Fuzzy
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= misc python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@rawbw.com
|
|
COMMENT= Fast Python phonetic algorithms
|
|
|
|
LICENSE= MIT ART20
|
|
LICENSE_COMB= multi
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
.include <bsd.port.mk>
|