a1b512e016
- wazuh-indexer and wazuh-dashboards now use 2.10.0 version of opensearch and opensearch-dashboard ChangeLog at: https://documentation.wazuh.com/current/release-notes/release-4-5-2.html
33 lines
807 B
Makefile
33 lines
807 B
Makefile
PORTNAME= wazuh
|
|
PORTVERSION= 4.5.2
|
|
CATEGORIES= security
|
|
MASTER_SITES= LOCAL/acm/${PORTNAME}/
|
|
PKGNAMESUFFIX= -indexer
|
|
DISTFILES= ${PORTNAME}${PKGNAMESUFFIX}.yml
|
|
DIST_SUBDIR= ${PORTNAME}-${DISTVERSION}
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= A highly scalable, full-text search and analytics engine
|
|
WWW= https://wazuh.com/
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/opensearch/bin/opensearch:textproc/opensearch
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= etc/wazuh-indexer/wazuh-indexer.yml
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
ETCDIR= ${PREFIX}/etc/${PORTNAME}${PKGNAMESUFFIX}
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
${CP} ${_DISTDIR}/wazuh-indexer.yml ${WRKSRC}
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/etc/wazuh-indexer
|
|
${INSTALL_DATA} ${WRKSRC}/wazuh-indexer.yml ${STAGEDIR}${PREFIX}/etc/wazuh-indexer/
|
|
|
|
.include <bsd.port.mk>
|