35 lines
1.0 KiB
Bash
35 lines
1.0 KiB
Bash
# Template file for 'influxdb'
|
|
pkgname=influxdb
|
|
version=1.4.3
|
|
revision=2
|
|
build_style=go
|
|
go_import_path="github.com/influxdata/influxdb"
|
|
go_package="${go_import_path}/cmd/influx
|
|
${go_import_path}/cmd/influxd
|
|
${go_import_path}/cmd/influx_tsm
|
|
${go_import_path}/cmd/influx_inspect
|
|
${go_import_path}/cmd/influx_stress"
|
|
go_ldflags="-X main.version=${version}"
|
|
hostmakedepends="git go-gdm"
|
|
system_accounts="_influxdb"
|
|
_influxdb_homedir="/var/lib/influxdb"
|
|
make_dirs="${_influxdb_homedir} 0755 _influxdb _influxdb"
|
|
conf_files="/etc/${pkgname}/${pkgname}.conf"
|
|
short_desc="Scalable datastore for metrics, events, and real-time analytics"
|
|
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
|
license="MIT"
|
|
homepage="https://influxdata.com/time-series-platform/influxdb/"
|
|
distfiles="https://${go_import_path}/archive/v${version}.tar.gz"
|
|
checksum=916dab5dccf3c521c1b1c29553a54aece2d94bc3da77b7ce3bf18eec063f1b38
|
|
|
|
pre_build() {
|
|
cd $GOSRCPATH
|
|
gdm restore
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
vsv ${pkgname}
|
|
vinstall etc/config.sample.toml 644 etc/${pkgname} ${pkgname}.conf
|
|
}
|