mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
d5977a4d0b
PR: ports/142520 Submitted by: Stephen Fisher <steve@stephen-fisher.com> Approved by: maintainer
32 lines
652 B
Makefile
32 lines
652 B
Makefile
# New ports collection makefile for: ansiprint
|
|
# Date created: 28 May 2006
|
|
# Whom: stephentfisher@yahoo.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ansiprint
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= print
|
|
MASTER_SITES= SF
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= steve@stephen.fisher.com
|
|
COMMENT= Prints through a terminal with ANSI escape sequences
|
|
|
|
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} ${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|