mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
448ac92a2a
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)
27 lines
516 B
Makefile
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>
|