mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-01 18:32:58 +02:00
parent
fff0e04e04
commit
8b3870c96a
3 changed files with 49 additions and 0 deletions
2
srcpkgs/influxdb/files/influxdb/log/run
Executable file
2
srcpkgs/influxdb/files/influxdb/log/run
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
exec logger -p daemon.info -t influxdb
|
3
srcpkgs/influxdb/files/influxdb/run
Executable file
3
srcpkgs/influxdb/files/influxdb/run
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
exec chpst -u _influxdb:_influxdb influxd -config /etc/influxdb/influxdb.conf 2>&1
|
44
srcpkgs/influxdb/template
Normal file
44
srcpkgs/influxdb/template
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
# Template file for 'influxdb'
|
||||||
|
pkgname=influxdb
|
||||||
|
version=0.13.0
|
||||||
|
revision=1
|
||||||
|
build_style=go
|
||||||
|
hostmakedepends="git-perl mercurial"
|
||||||
|
go_import_path="github.com/influxdata/influxdb"
|
||||||
|
go_package="${go_import_path}/cmd/influx
|
||||||
|
${go_import_path}/cmd/influxd
|
||||||
|
${go_import_path}/cmd/influx_inspect
|
||||||
|
${go_import_path}/cmd/influx_stress
|
||||||
|
${go_import_path}/cmd/influx_tsm"
|
||||||
|
short_desc="Scalable datastore for metrics, events, and real-time analytics"
|
||||||
|
maintainer="Farhad Shahbazi <grauwolf@geekosphere.org>"
|
||||||
|
license="MIT"
|
||||||
|
homepage="https://influxdata.com/time-series-platform/influxdb/"
|
||||||
|
distfiles="https://${go_import_path}/archive/v${version}.tar.gz"
|
||||||
|
checksum=661dc5719efa2db0ff5e5a4676c31852dd259a952dd8fc837766cb291e06d31b
|
||||||
|
|
||||||
|
system_accounts="_influxdb"
|
||||||
|
influxdb_homedir="/var/lib/$pkgname"
|
||||||
|
influxdb_shell="/bin/false"
|
||||||
|
|
||||||
|
conf_files="/etc/influxdb/influxdb.conf"
|
||||||
|
make_dirs="$influxdb_homedir 0755 _influxdb _influxdb"
|
||||||
|
|
||||||
|
post_extract() {
|
||||||
|
mkdir -p $GOPATH/src/github.com/influxdata
|
||||||
|
ln -s $PWD $GOPATH/src/$go_import_path
|
||||||
|
}
|
||||||
|
|
||||||
|
pre_install() {
|
||||||
|
rm -f $GOPATH/bin/gdm
|
||||||
|
rm -f $GOPATH/bin/stress_test_server
|
||||||
|
rm -f $GOPATH/bin/test_client
|
||||||
|
rm -f $GOPATH/bin/urlgen
|
||||||
|
}
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
vsv $pkgname
|
||||||
|
|
||||||
|
vinstall etc/config.sample.toml 644 etc/influxdb influxdb.conf
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue