mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
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:
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
|
@ -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
18
textproc/libdiff/Makefile
Normal 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>
|
3
textproc/libdiff/distinfo
Normal file
3
textproc/libdiff/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1537598498
|
||||
SHA256 (libdiff-0.1.0.tar.gz) = 2012d2eae9ecaf9717c77ecefd9bdff4e38f485d8b9ad8f916cff1fdf1151512
|
||||
SIZE (libdiff-0.1.0.tar.gz) = 19316
|
5
textproc/libdiff/pkg-descr
Normal file
5
textproc/libdiff/pkg-descr
Normal 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
|
Loading…
Add table
Reference in a new issue