27 lines
733 B
Bash
27 lines
733 B
Bash
# Template file for 'telegraf'
|
|
pkgname=telegraf
|
|
version=1.9.4
|
|
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=c0f9bc35b390b18bd697cc4d15827fe9ccc93f2383b249206f43799523a20b2b
|
|
system_accounts="_telegraf"
|
|
|
|
pre_build() {
|
|
cd $GOSRCPATH
|
|
dep ensure
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
vsv ${pkgname}
|
|
}
|