void-packages/srcpkgs/netdata/template

68 lines
1.7 KiB
Bash

# Template file for 'netdata'
pkgname=netdata
version=1.22.1
revision=1
build_style=gnu-configure
configure_args="--with-user=_netdata"
hostmakedepends="pkg-config autoconf automake"
makedepends="libuuid-devel zlib-devel libuv-devel"
short_desc="Real-time performance monitoring, done right"
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
license="GPL-3.0-or-later"
homepage="http://my-netdata.io"
distfiles="https://github.com/netdata/netdata/archive/v${version}.tar.gz"
checksum=6efd785eab82f98892b4b4017cadfa4ce1688985915499bc75f2f888765a3446
python_version=2
system_accounts="_netdata"
conf_files="/etc/${pkgname}/*.conf"
subpackages="netdata-plugins-python"
case "$XBPS_TARGET_MACHINE" in
ppc64*) ;;
ppc*) _without_node=yes ;;
esac
if [ -z "$_without_node" ]; then
subpackages+=" netdata-plugins-nodejs"
fi
make_dirs="
/var/cache/netdata 0755 _netdata _netdata
/var/log/netdata 0755 _netdata _netdata"
pre_configure() {
autoreconf -ivf
}
post_install() {
vsv netdata
vcopy ${FILESDIR}/netdata.conf etc/$pkgname/
if [ -n "$_without_node" ]; then
rm -rf ${DESTDIR}/usr/libexec/netdata/node.d
rm -rf ${DESTDIR}/usr/libexec/netdata/plugins.d/node.d.plugin
fi
}
netdata-plugins-nodejs_package() {
short_desc+=" - NodeJS Plugins"
depends="${sourcepkg}>=${version}_${revision} virtual?nodejs-runtime"
archs=noarch
pkg_install() {
vmove usr/libexec/netdata/plugins.d/node.d.plugin
vmove usr/libexec/netdata/node.d
}
}
netdata-plugins-python_package() {
short_desc+=" - Python Plugins"
depends="${sourcepkg}>=${version}_${revision} python"
archs=noarch
pkg_install() {
vmove usr/libexec/netdata/plugins.d/python.d.plugin
vmove usr/libexec/netdata/python.d
vmove etc/netdata/python.d
}
}