pkgsrc/devel/ucl/Makefile
cjep 236f48314b Initial import of the UCL data compression library v1.01 into the
NetBSD packages collection as devel/ucl.

UCL is a portable lossless data compression library written in ANSI C.
It implements a number of NRV compression algorithms that achieve an
excellent compression ratio while allowing very fast decompression.
2002-12-13 20:43:39 +00:00

25 lines
671 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2002/12/13 20:43:39 cjep Exp $
#
DISTNAME= ucl-1.01
CATEGORIES= devel archivers
MASTER_SITES= http://www.oberhumer.com/opensource/ucl/download/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.oberhumer.com/opensource/ucl/
COMMENT= Portable lossless data compression library
USE_BUILDLINK2= YES
USE_LIBTOOL= YES
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --enable-shared=yes
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ucl
for i in simple.c lutil.h uclpack.c Makefile; do \
${INSTALL_DATA} ${WRKSRC}/examples/$$i ${PREFIX}/share/examples/ucl;\
done;
.include "../../mk/bsd.pkg.mk"