This is a library for calculating the edit distance between strings or data using various metrics (Levenshtein, Damerau, Needleman-Wunsch, Hamming...). Reviewed by: garga Approved by: brooks Differential Revision: https://reviews.freebsd.org/D3730
29 lines
534 B
Makefile
29 lines
534 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= myrepos
|
|
PORTVERSION= 1.20130710
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= jonathan@FreeBSD.org
|
|
COMMENT= Tool to manage all your version control repos
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= joeyh
|
|
|
|
USES+= perl5 shebangfix
|
|
USE_PERL5= run
|
|
SHEBANG_FILES= mr
|
|
|
|
PLIST_FILES= bin/mr
|
|
PORTDOCS= README index.mdwn
|
|
|
|
NO_BUILD=
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/mr ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} README doc/*.mdwn ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|