40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
# Template file for 'chronograf'
|
|
pkgname=chronograf
|
|
version=1.8.7
|
|
revision=1
|
|
build_style=go
|
|
go_import_path="github.com/influxdata/${pkgname}"
|
|
go_package="${go_import_path}/cmd/chronograf"
|
|
go_ldflags="-X main.version=${version}"
|
|
hostmakedepends="dep go-bindata nodejs-lts yarn python"
|
|
short_desc="Open source monitoring and visualization UI for the TICK stack"
|
|
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
|
|
license="AGPL-3.0-or-later"
|
|
homepage="https://www.influxdata.com/time-series-platform/chronograf/"
|
|
distfiles="https://github.com/influxdata/${pkgname}/archive/${version}.tar.gz"
|
|
checksum=ccee19b4e0de69fc1109dea4fb71a14d2fb60077a7203307ffeb35033aff79e1
|
|
|
|
system_accounts="_chronograf"
|
|
_chronograf_homedir="/var/lib/${pkgname}"
|
|
make_dirs="${_chronograf_homedir} 0755 _chronograf _chronograf"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686*) broken="yarn not available" ;;
|
|
ppc*) broken="ftbfs in some js module" ;;
|
|
esac
|
|
|
|
pre_build() {
|
|
cd $wrksrc/ui
|
|
yarn install
|
|
export PATH=$PATH:${wrksrc}/ui/node_modules/.bin
|
|
|
|
cd $wrksrc
|
|
make assets
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
vsv chronograf
|
|
vmkdir usr/share/chronograf/
|
|
vcopy ${wrksrc}/${build_wrksrc}/canned usr/share/chronograf/canned
|
|
}
|