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
This commit is contained in:
Baptiste Daroussin 2018-09-22 06:48:58 +00:00
parent 8e3a2c3e2e
commit 1e777d2df1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=480350
4 changed files with 27 additions and 0 deletions

View file

@ -407,6 +407,7 @@
SUBDIR += libcss
SUBDIR += libcsv
SUBDIR += libcue
SUBDIR += libdiff
SUBDIR += libe-book
SUBDIR += libebml
SUBDIR += libepubgen

18
textproc/libdiff/Makefile Normal file
View file

@ -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>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1537598498
SHA256 (libdiff-0.1.0.tar.gz) = 2012d2eae9ecaf9717c77ecefd9bdff4e38f485d8b9ad8f916cff1fdf1151512
SIZE (libdiff-0.1.0.tar.gz) = 19316

View file

@ -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