mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
28 lines
603 B
Makefile
28 lines
603 B
Makefile
# Created by: David O'Brien (obrien@NUXI.com)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= trinokiller
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= security
|
|
# mastersite disappeared in August 2003
|
|
MASTER_SITES= # http://www.afro-productions.com/
|
|
DISTNAME= trinokiller
|
|
EXTRACT_SUFX= .c
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Remotely kill trino nodes
|
|
|
|
PLIST_FILES= sbin/trinokiller
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${DISTDIR}/${DISTFILES} ${WRKSRC}
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} -o ${WRKSRC}/${DISTNAME} ${WRKSRC}/${DISTNAME}.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${STAGEDIR}/${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|