mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
e93762eb54
Simple command-line pseudo terminal manager PR: 34346 Submitted by: Oliver Breuninger <ob@breuninger.org>
28 lines
570 B
Makefile
28 lines
570 B
Makefile
# New ports collection makefile for: cotty
|
|
# Date created: 26 January 2001
|
|
# Whom: Oliver Breuninger <ob@breuninger.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cotty
|
|
PORTVERSION= 0.4c
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://fare.tunes.org/files/fwprc/
|
|
EXTRACT_SUFX= .c.gz
|
|
|
|
MAINTAINER= ob@breuninger.org
|
|
|
|
NO_WRKSUBDIR= yes
|
|
EXTRACT_CMD= ${GZCAT}
|
|
EXTRACT_BEFORE_ARGS= # empty
|
|
EXTRACT_AFTER_ARGS= > ${WRKSRC}/${DISTNAME}.c
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} -o ${WRKSRC}/cotty ${WRKSRC}/${DISTNAME}.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cotty ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|