a4cf452843
packages collection as misc/bsdiff. Bsdiff and bspatch are tools for building and applying patches to binary files. By using suffix sorting (specifically, Larsson and Sadakane's qsufsort) and taking advantage of how executable files change, bsdiff routinely produces binary patches 50-80% smaller than those produced by Xdelta, and 15% smaller than those produced by .RTPatch (a $2750/seat commercial patch tool).
19 lines
461 B
Makefile
19 lines
461 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2003/12/30 17:34:45 cjep Exp $
|
|
#
|
|
|
|
DISTNAME= bsdiff-4.1
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.daemonology.net/bsdiff/
|
|
|
|
MAINTAINER= cjep@NetBSD.org
|
|
HOMEPAGE= http://www.daemonology.net/bsdiff/
|
|
COMMENT= Size efficient binary diff and patch tools
|
|
|
|
USE_BUILDLINK2= yes
|
|
|
|
.if !exists(/usr/bin/bzip2)
|
|
MAKE_ENV+= BZIP2=${LOCALBASE}/bin/bzip2
|
|
.endif
|
|
|
|
.include "../../archivers/bzip2/buildlink2.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|