Pixz (pronounced 'pixie') is a parallel, indexing version of XZ. The existing XZ Utils provide great compression in the .xz file format, but they produce just one big block of compressed data. Pixz instead produces a collection of smaller blocks which makes random access to the original data possible. This is especially useful for large tarballs. Originaly packaged by ISIHARA Takanori as pkgsrc-wip/pixz and updated to 1.0.7 by me.
28 lines
683 B
Makefile
28 lines
683 B
Makefile
# $NetBSD: Makefile,v 1.1 2021/04/13 03:09:01 ryoon Exp $
|
|
#
|
|
|
|
GITHUB_PROJECT= pixz
|
|
GITHUB_RELEASE= v${PKGVERSION_NOREV}
|
|
DISTNAME= pixz-1.0.7
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=vasi/}
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= https://github.com/vasi/pixz
|
|
COMMENT= Parallel, indexed xz compressor
|
|
LICENSE= 2-clause-bsd
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= pkg-config
|
|
|
|
INSTALLATION_DIRS= ${PKGMANDIR}/man1
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/src/pixz.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
|
|
.include "../../archivers/libarchive/buildlink3.mk"
|
|
.include "../../archivers/xz/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|