diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2018-09-22 06:48:58 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2018-09-22 06:48:58 +0000 |
commit | 1e777d2df1c57e8ed8f66b9d1d9b933dca50b6aa (patch) | |
tree | 71abf329ec847e905755b15cbc771e87417ceb28 /textproc/libdiff | |
parent | Update to the 20180916 snapshot of GCC 9. (The last two weeks' versions (diff) |
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
Diffstat (limited to 'textproc/libdiff')
-rw-r--r-- | textproc/libdiff/Makefile | 18 | ||||
-rw-r--r-- | textproc/libdiff/distinfo | 3 | ||||
-rw-r--r-- | textproc/libdiff/pkg-descr | 5 |
3 files changed, 26 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> diff --git a/textproc/libdiff/distinfo b/textproc/libdiff/distinfo new file mode 100644 index 000000000000..95965cdc606e --- /dev/null +++ b/textproc/libdiff/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1537598498 +SHA256 (libdiff-0.1.0.tar.gz) = 2012d2eae9ecaf9717c77ecefd9bdff4e38f485d8b9ad8f916cff1fdf1151512 +SIZE (libdiff-0.1.0.tar.gz) = 19316 diff --git a/textproc/libdiff/pkg-descr b/textproc/libdiff/pkg-descr new file mode 100644 index 000000000000..afd745647e06 --- /dev/null +++ b/textproc/libdiff/pkg-descr @@ -0,0 +1,5 @@ +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 |