mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
4ed575d2ca
Morse Code Generator
31 lines
558 B
Makefile
31 lines
558 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: cwtext
|
|
# Date created: Nov 16, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cwtext
|
|
PORTVERSION= 0.90
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
USE_GMAKE= yes
|
|
MAKEFILE= makefile
|
|
ALL_TARGET= ALL
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e "s,^PREFIX,#PREFIX,g ; \
|
|
s,gcc,${CC} ${CFLAGS},g" ${WRKSRC}/${MAKEFILE}
|
|
|
|
do-install:
|
|
.for file in cwpcm cwtext
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|