Zopfli is a compression algorithm programmed in C to perform very good, but slow, deflate or zlib compression. This program can only compress, not decompress. Existing zlib or deflate libraries can decompress the data. ok rfreeman@
32 lines
542 B
Makefile
32 lines
542 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/07/07 17:57:44 bentley Exp $
|
|
|
|
COMMENT = deflate-compatible compression format
|
|
|
|
DISTNAME = zopfli-1.0.0
|
|
|
|
CATEGORIES = archivers
|
|
|
|
HOMEPAGE = https://code.google.com/p/zopfli/
|
|
|
|
# Apache 2.0
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c m
|
|
|
|
MASTER_SITES = https://zopfli.googlecode.com/files/
|
|
EXTRACT_SUFX = .zip
|
|
|
|
MAKE_FLAGS = CC="${CC}" \
|
|
CFLAGS="${CFLAGS}"
|
|
|
|
NO_TEST = Yes
|
|
|
|
MAKE_FILE = makefile
|
|
|
|
ALL_TARGET = make
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/zopfli ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|