25 lines
616 B
Makefile
25 lines
616 B
Makefile
# $NetBSD: Makefile,v 1.13 2004/03/11 18:03:49 xtraeme Exp $
|
|
|
|
DISTNAME= freeze-2.5
|
|
PKGREVISION= 1
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= ftp://ftp.cdrom.com/pub/unixfreeware/archive/
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
COMMENT= FREEZE / MELT compression program - often used in QNX
|
|
|
|
USE_BUILDLINK3= yes
|
|
GNU_CONFIGURE= yes
|
|
ALL_TARGET= prog
|
|
|
|
# Allow "melting" freeze-1.0-format archives.
|
|
CFLAGS+= -DCOMPAT=1
|
|
|
|
post-patch:
|
|
cd ${WRKSRC}; for file in *.1; do \
|
|
${SED} -e "s|@PREFIX@|${PREFIX}|g" \
|
|
$${file} > $${file}.fixed; \
|
|
${MV} -f $${file}.fixed $${file}; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|