openbsd-ports/archivers/pigz/Makefile
miod aaaf81a6dd Add a bunch of NOT_FOR_ARCHS and BROKEN- annotations, either for all gcc3
platforms (due to compiler deficiencies) or m88k only (due to toolchain
issues leading to libGL not being available).
2014-09-16 19:56:09 +00:00

33 lines
691 B
Makefile

# $OpenBSD: Makefile,v 1.3 2014/09/16 19:56:09 miod Exp $
# __builtin_clz
NOT_FOR_ARCHS= ${GCC3_ARCHS}
COMMENT = parallel implementation of gzip utilizing multiple cores
DISTNAME = pigz-2.3.1
REVISION = 0
CATEGORIES = archivers
HOMEPAGE = http://zlib.net/pigz/
MAINTAINER = Thomas Pfaff <tpfaff@tp76.info>
# zlib + Apache
PERMIT_PACKAGE_CDROM = Yes
WANTLIB = c m pthread z
MASTER_SITES = ${HOMEPAGE}
MAKE_FLAGS = CC="${CC}" CFLAGS="${CFLAGS} -Wall -Wextra"
USE_GMAKE = Yes
ALL_TARGET = pigz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/pigz ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/unpigz ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/pigz.1 ${PREFIX}/man/man1
.include <bsd.port.mk>