2e82422db8
Differencing and Compression, into the packages collection: An encoder and decoder for the format described in RFC 3284: "The VCDIFF Generic Differencing and Compression Data Format." The encoding strategy is largely based on Bentley-McIlroy 99: "Data Compression Using Long Common Strings." A library with a simple API is included, as well as a command-line executable that can apply the encoder and decoder to source, target, and delta files. A slight variation from the draft standard is defined to allow chunk-by-chunk decoding when only a partial delta file window is available.
21 lines
503 B
Makefile
21 lines
503 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2013/01/03 18:33:20 agc Exp $
|
|
#
|
|
|
|
DISTNAME= open-vcdiff-0.8.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://open-vcdiff.googlecode.com/files/
|
|
|
|
MAINTAINER= agc@NetBSD.org
|
|
HOMEPAGE= http://code.google.com/p/open-vcdiff/
|
|
COMMENT= RFC 3284 encoder/decoder for VCDIFF Differencing and Compression
|
|
LICENSE= apache-2.0
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake
|
|
USE_LIBTOOL= yes
|
|
USE_LANGUAGES+= c c++
|
|
|
|
AUTO_MKDIRS= yes
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|