mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
24 lines
487 B
Makefile
24 lines
487 B
Makefile
# Created by: jamrich.majo@gmail.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nagios-check_cpu_usage
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Nagios plug-in to check CPU usage
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_DIRSTRY= libexec/nagios
|
|
PLIST_FILES= libexec/nagios/check_cpu_usage
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/libexec/nagios
|
|
@${INSTALL_SCRIPT} ${.CURDIR}/src/check_cpu_usage ${PREFIX}/libexec/nagios
|
|
|
|
.include <bsd.port.mk>
|