pkgsrc/archivers/ppmd/Makefile
ben a279467359 Initial import of ppmd-9.1, a PPM file compressor.
PPMd is a file compressor written mainly for embedding in user programs, and
it is not intended for direct use.  This program is an effort to make speed
and performance improvements on the abstract PPM model [1-6] without tuning
it to particular data types.
2004-03-08 23:44:00 +00:00

31 lines
669 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2004/03/08 23:44:00 ben Exp $
#
DISTNAME= ppmdi1
PKGNAME= ppmd-9.1
CATEGORIES= archivers
MASTER_SITES= http://compression.ru/ds/
EXTRACT_SUFX= .rar
MAINTAINER= ben@NetBSD.org
HOMEPAGE= http://compression.ru/ds/
COMMENT= PPM file compressor
MAKEFILE= makefile.gmk
ALL_TARGET= ppmd
WRKSRC= ${WRKDIR}
post-extract:
cd ${WRKSRC} && for i in *; do \
${MV} $$i $$i.new; \
${TR} -d '\r' <$$i.new >$$i; \
${RM} $$i.new; \
done
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ppmd ${PREFIX}/bin
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ppmd/
${INSTALL_DATA} ${WRKSRC}/read_me.txt ${PREFIX}/share/doc/ppmd/
.include "../../mk/bsd.pkg.mk"