mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
7ad2591434
The "Slowcat" program is intended for use with various VT100 and other animations from http://artscene.textfiles.com/vt100/, where a time delay not unlike a terminal or modem makes the entire thing actually understandable. This program will add an artificial 9600 baud delay while printing a file.
29 lines
585 B
Makefile
29 lines
585 B
Makefile
PORTNAME= slowcat
|
|
DISTVERSION= 2.2
|
|
CATEGORIES= textproc perl5
|
|
MASTER_SITES= http://artscene.textfiles.com/viewers/linux/
|
|
DISTNAME= ${PORTNAME}
|
|
EXTRACT_SUFX= .pl
|
|
DIST_SUBDIR= ${PKGNAME}
|
|
|
|
MAINTAINER= 0mp@FreeBSD.org
|
|
COMMENT= Write output slowly, emulating physical serial terminal
|
|
|
|
LICENSE= PD
|
|
|
|
USES= perl5
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
PLIST_FILES= bin/${DISTNAME}
|
|
|
|
do-extract:
|
|
@${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME}${EXTRACT_SUFX} \
|
|
${STAGEDIR}${PREFIX}/bin/${DISTNAME}
|
|
|
|
.include <bsd.port.mk>
|