aboutsummaryrefslogtreecommitdiff
path: root/textproc/libdiff/Makefile
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2018-09-22 06:48:58 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2018-09-22 06:48:58 +0000
commit1e777d2df1c57e8ed8f66b9d1d9b933dca50b6aa (patch)
tree71abf329ec847e905755b15cbc771e87417ceb28 /textproc/libdiff/Makefile
parent8e3a2c3e2e0d1d46b8a3fd94032dae82916b712d (diff)
downloadports-1e777d2df1c57e8ed8f66b9d1d9b933dca50b6aa.tar.gz
ports-1e777d2df1c57e8ed8f66b9d1d9b933dca50b6aa.zip
libdiff is a C library generating the shortest edit script, longest common
subsequence, and edit distance between arbitrary sequences of bytes. It derives from Tatsuhiko Kubo's onp and dtl. WWW: https://github.com/kristapsdz/libdiff
Notes
Notes: svn path=/head/; revision=480350
Diffstat (limited to 'textproc/libdiff/Makefile')
-rw-r--r--textproc/libdiff/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/textproc/libdiff/Makefile b/textproc/libdiff/Makefile
new file mode 100644
index 000000000000..ec1ebbbb3b89
--- /dev/null
+++ b/textproc/libdiff/Makefile
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME= libdiff
+PORTVERSION= 0.1.0
+CATEGORIES= textproc
+MASTER_SITES= http://kristaps.bsd.lv/libdiff/snapshots/
+
+MAINTAINER= bapt@FreeBSD.org
+COMMENT= Library to generate arbitrary sequence diffs
+
+LICENSE= ISCL
+
+PLIST_FILES= lib/libdiff.a \
+ include/diff.h \
+ man/man3/diff.3.gz
+HAS_CONFIGURE= yes
+
+.include <bsd.port.mk>