1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00
freebsd-ports/print/ansiprint/Makefile
John Marino 448ac92a2a Reset maintainer print/ansiprint per his request
Thanks for looking after this port, Stephen.  While here, I'll make
some cosmetic realignments and convert EXTRACT_SUFX to USES.

PR:		192891
Submitted by:	maintainer (Stephen Fisher)
2014-08-21 17:12:31 +00:00

27 lines
516 B
Makefile

# Created by: Stephen Fisher
# $FreeBSD$
PORTNAME= ansiprint
PORTVERSION= 1.0
CATEGORIES= print
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Prints through a terminal with ANSI escape sequences
USES= tar:tgz
PLIST_FILES= bin/${PORTNAME}
CXXFLAGS+= -Wno-deprecated
post-extract:
@${RM} ${WRKSRC}/Makefile
do-build:
cd ${WRKSRC} && ${CXX} ${CXXFLAGS} -o ${PORTNAME} ansiprint.cc
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} \
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>