Optimized edit distances for fuzzy matching, including Levenshtein and restricted Damerau-Levenshtein algorithms. ok sthen@
23 lines
448 B
Makefile
23 lines
448 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2018/01/12 21:36:14 kili Exp $
|
|
|
|
COMMENT = Levenshtein edit distances
|
|
|
|
DISTNAME = edit-distance-0.2.2.1
|
|
CATEGORIES = devel
|
|
|
|
MAINTAINER = Matthias Kilian <kili@openbsd.org>
|
|
|
|
# BSD3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/ghc
|
|
|
|
MODGHC_BUILD = cabal hackage haddock register
|
|
|
|
MODGHC_PACKAGE_KEY = EaSjgw2yYb066MoIbDPIEG
|
|
|
|
BUILD_DEPENDS+= ${RUN_DEPENDS}
|
|
RUN_DEPENDS = devel/hs-random>=1.0
|
|
|
|
.include <bsd.port.mk>
|