33 lines
932 B
Makefile
33 lines
932 B
Makefile
# $OpenBSD: Makefile,v 1.4 2013/03/11 11:35:49 espie Exp $
|
|
|
|
PKG_ARCH = *
|
|
|
|
COMMENT = Nagios plugin to check RAID status with bioctl
|
|
|
|
DISTNAME = check_bioctl-1.16
|
|
CATEGORIES = net
|
|
|
|
MAINTAINER = Michael Erdely <merdely@openbsd.org>
|
|
|
|
HOMEPAGE = https://www.monitoringexchange.org/inventory/Check-Plugins/Hardware/Devices/RAID-Controller/check_bioctl
|
|
MASTER_SITES = https://www.monitoringexchange.org/attachment/download/Check-Plugins/Hardware/Devices/RAID-Controller/check_bioctl/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
NO_BUILD = Yes
|
|
NO_TEST = Yes
|
|
|
|
RUN_DEPENDS = net/nagios/plugins,-main
|
|
|
|
do-configure:
|
|
@${SUBST_CMD} ${WRKSRC}/check_bioctl ${WRKSRC}/README
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/libexec/nagios
|
|
${INSTALL_SCRIPT} ${WRKSRC}/check_bioctl ${PREFIX}/libexec/nagios
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/check_bioctl
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/check_bioctl
|
|
|
|
.include <bsd.port.mk>
|