void-packages/srcpkgs/etcd/template
2017-11-26 00:41:27 -08:00

27 lines
702 B
Bash

# Template file for 'etcd'
pkgname=etcd
version=3.2.10
revision=2
build_style=go
short_desc="Distributed reliable key-value store"
maintainer="Andrea Brancaleoni <abc@pompel.me>"
license="Apache-2.0"
hostmakedepends="git glide"
go_import_path="github.com/coreos/etcd"
go_package="${go_import_path} ${go_import_path}/etcdctl"
homepage="https://coreos.com/etcd/docs/latest/"
distfiles="https://${go_import_path}/archive/v${version}.tar.gz"
checksum=86b7afd78b3a409b23ddf9d889b74c4edecf0fec1148f83bf025911705895f08
conf_files="/etc/sv/etcd/conf"
system_accounts="etcd"
make_dirs="/var/lib/etcd 0755 etcd etcd"
pre_build() {
cd $GOSRCPATH
glide install
}
post_install() {
vlicense LICENSE
vsv etcd
}