This library aims to enable Metrics-Driven Development for C++ services. It implements the Prometheus Data Model, a powerful abstraction on which to collect and expose metrics. We offer the possibility for metrics to be collected by Prometheus, but other push/pull collections can be added as plugins.
24 lines
501 B
Makefile
24 lines
501 B
Makefile
PORTNAME= prometheus-cpp
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.3.0
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= zi@FreeBSD.org
|
|
COMMENT= Prometheus Client Library for Modern C++
|
|
WWW= https://github.com/jupp0r/prometheus-cpp
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= cmake ssl
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= jupp0r
|
|
|
|
CMAKE_OFF= ENABLE_PUSH ENABLE_COMPRESSION THIRDPARTY_CIVETWEB_WITH_SSL \
|
|
ENABLE_TESTING ENABLE_PULL
|
|
CMAKE_ON= BUILD_SHARED_LIBS
|
|
|
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
|
|
|
.include <bsd.port.mk>
|