mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
27 lines
562 B
Makefile
27 lines
562 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: ttyrec
|
|
# Date created: Feb 14, 2001
|
|
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ttyrec
|
|
PORTVERSION= 1.0.5
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://namazu.org/~satoru/ttyrec/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
MAN1= ttyplay.1 ttyrec.1
|
|
|
|
do-install:
|
|
.for file in ttyrec ttyplay ttytime
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin
|
|
.endfor
|
|
.for file in ${MAN1}
|
|
${INSTALL_MAN} ${WRKSRC}/${file} ${MAN1PREFIX}/man/man1
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|