mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
ce5874a5be
Reinstante patch instead since we are replacing just static content see: https://www.freebsd.org/doc/en/books/porters-handbook/slow-patch.html#slow-patch-automatic-replacements Not bumping PORTREVISION. Reported by: mat@
30 lines
744 B
Makefile
30 lines
744 B
Makefile
# Created by: James Howard <howardj@wam.umd.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cursive
|
|
PORTVERSION= 0.11
|
|
PORTEPOCH= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= https://www.unixpapa.com/software/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= ed.arrakis@gmail.com
|
|
COMMENT= Create ASCII character cursive handwriting
|
|
|
|
USES= tar:tgz
|
|
NO_WRKSUBDIR= yes
|
|
|
|
PLIST_FILES= bin/cursive \
|
|
man/man6/cursive.6.gz
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} -c ${WRKSRC}/cursive.c -o ${WRKSRC}/cursive.o
|
|
${CC} ${CFLAGS} -c ${WRKSRC}/font.c -o ${WRKSRC}/font.o
|
|
${CC} ${CFLAGS} -o ${WRKSRC}/cursive ${WRKSRC}/cursive.o ${WRKSRC}/font.o
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cursive ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/cursive.6 ${STAGEDIR}${PREFIX}/man/man6
|
|
|
|
.include <bsd.port.mk>
|