freebsd-ports/devel/libdistance/files/patch-test_Makefile
Jonathan Anderson c006c0537d Add new port: devel/libdistance.
This is a library for calculating the edit distance between strings or data
using various metrics (Levenshtein, Damerau, Needleman-Wunsch, Hamming...).

Note: r400363 used the above commit message but, due to user error, was
      actually devel/myrepos (see https://reviews.freebsd.org/D3730).

Reviewed by:	garga
Approved by:	brooks
Differential Revision:	https://reviews.freebsd.org/D4015
2015-11-03 21:57:35 +00:00

14 lines
252 B
Text

--- test/Makefile.orig 2014-10-10 13:11:38 UTC
+++ test/Makefile
@@ -3,8 +3,10 @@
PROG= test
CFLAGS+= -I.. -g
LDADD= -L.. -ldistance -lm
-NOMAN= Yes
+MAN=
CLEANFILES+= test
+BINDIR= ${PREFIX}/tests/libdistance
+
.include <bsd.prog.mk>