forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
25 lines
589 B
Makefile
25 lines
589 B
Makefile
# Created by: Oliver Breuninger <ob@breuninger.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cotty
|
|
PORTVERSION= 0.4c
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.breuninger.org/files/distfiles/
|
|
EXTRACT_SUFX= .c.gz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simple command-line pseudo terminal manager
|
|
|
|
NO_WRKSUBDIR= yes
|
|
PLIST_FILES= bin/cotty
|
|
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 ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|