1fdae38997
External compression updates. 3.0z prints a new warning when it decompresses externally-compressed inputs, since I've received a few reports of users confused by checksum failures. Remember, it is not possible for xdelta3 to decompress and recompress a file and ensure it has the same checksum. 3.0z improves error handling for externally-compressed inputs with "trailing garbage" and also includes a new flag to force the external compression command. Pass '-F' to xdelta3 and it will pass '-f' to the external compression command.
27 lines
668 B
Makefile
27 lines
668 B
Makefile
# $NetBSD: Makefile,v 1.7 2010/11/23 17:20:04 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= xdelta3.0z
|
|
PKGNAME= xdelta3-3.0z
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://xdelta.googlecode.com/files/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://xdelta.org/
|
|
COMMENT= Enhanced diff that works on binary files (version 3.x)
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
BUILD_TARGET= xdelta3
|
|
USE_TOOLS+= gmake
|
|
INSTALLATION_DIRS= bin share/doc/xdelta3
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xdelta3 ${DESTDIR}${PREFIX}/bin/xdelta3
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/xdelta3
|
|
|
|
do-test:
|
|
${WRKSRC}/xdelta3 test
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|