7b0fb2d55b
-------------- LZO is a data compression library which is suitable for data de-/compression in real-time. This means it favours speed over compression ratio. LZO implements a number of algorithms with the following features: + Decompression is simple and *very* fast. + Requires no memory for decompression. + Compression is pretty fast. + Requires 64 kB of memory for compression. + Allows you to dial up extra compression at a speed cost in the compressor. The speed of the decompressor is not reduced. + Includes compression levels for generating pre-compressed data which achieve a quite competitive compression ratio. + There is also a compression level which needs only 8 kB for compression. + Algorithm is thread safe. + Algorithm is lossless. Author: Markus Franz Xaver Johannes Oberhumer markus.oberhumer@jk.uni-linz.ac.at http://www.infosys.tuwien.ac.at/Staff/lux/marco ----------
28 lines
649 B
Makefile
28 lines
649 B
Makefile
# New ports collection makefile for: lzo
|
|
# Version required: 1.04
|
|
# Date created: 21 Feb 1998
|
|
# Whom: giffunip@asme.org
|
|
#
|
|
# $Id: $
|
|
#
|
|
|
|
DISTNAME= lzo-1.04
|
|
CATEGORIES= archivers devel
|
|
MASTER_SITES= ftp://wildsau.idv.uni-linz.ac.at/pub/mfx/lzo/ \
|
|
ftp://tsx-11.mit.edu/pub/linux/sources/libs/ \
|
|
${MASTER_SITE_SUNSITE}
|
|
MASTER_SITE_SUBDIR=libs/compression
|
|
|
|
MAINTAINER= ports@FreeBSD.ORG
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-shared=yes \
|
|
--enable-asm=yes
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/lzo
|
|
${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/lzo
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|