26 lines
734 B
Bash
26 lines
734 B
Bash
# Template file for 'telegraf'
|
|
pkgname=telegraf
|
|
version=1.11.0
|
|
revision=1
|
|
build_style=go
|
|
go_import_path=github.com/influxdata/telegraf
|
|
go_package="${go_import_path}/cmd/telegraf"
|
|
go_ldflags="-X main.version=${version}"
|
|
hostmakedepends="dep"
|
|
short_desc="Plugin-driven server agent for collecting & reporting metrics"
|
|
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="https://www.influxdata.com/time-series-platform/telegraf/"
|
|
distfiles="https://github.com/influxdata/${pkgname}/archive/${version}.tar.gz"
|
|
checksum=492f9c9b97011271b65f1589556b70028ff3c50d55eae874ff49cb8971b8d443
|
|
system_accounts="_telegraf"
|
|
|
|
pre_build() {
|
|
cd $GOSRCPATH
|
|
dep ensure
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
vsv ${pkgname}
|
|
}
|