5629e97bcc
UCL is a portable lossless data compression library. It implements a number of algorithms with the following features: - Decompression is simple and *very* fast. - Requires no memory for decompression. - The decompressors can be squeezed into less than 200 bytes of code. - Includes compression levels for generating pre-compressed data which achieve an excellent compression ratio. - Allows you to dial up extra compression at a speed cost in the compressor. The speed of the decompressor is not reduced. - Algorithm is thread safe. - Algorithm is lossless. - In-place decompression. ok naddy@.
30 lines
647 B
Makefile
30 lines
647 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2002/05/03 20:01:17 wcobb Exp $
|
|
|
|
COMMENT= "portable lossless data compression library"
|
|
|
|
DISTNAME= ucl-1.01
|
|
CATEGORIES= archivers devel
|
|
NEED_VERSION= 1.525
|
|
|
|
HOMEPAGE= http://www.oberhumer.com/opensource/ucl
|
|
|
|
MAINTAINER= Wilbern Cobb <wcobb@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/download/
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
BUILD_DEPENDS= nasm::devel/nasm
|
|
.endif
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} --enable-static
|
|
MAKE_FLAGS= CFLAGS_O=""
|
|
|
|
.include <bsd.port.mk>
|