summaryrefslogtreecommitdiff
path: root/app-admin/ksonnet/ksonnet-0.8.0.ebuild
blob: 0c4bbcbd400e2d6b5e251cc5ed1591e68d993c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6

EGO_PN="github.com/ksonnet/ksonnet"

inherit golang-build golang-vcs-snapshot bash-completion-r1

ARCHIVE_URI="https://github.com/ksonnet/ksonnet/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"

DESCRIPTION="CLI-supported framework for extensible Kubernetes configurations"
HOMEPAGE="https://github.com/ksonnet/ksonnet https://ksonnet.io/"
SRC_URI="${ARCHIVE_URI}"

LICENSE="Apache-2.0"
SLOT="0"
IUSE=""

RESTRICT="test"

src_prepare() {
	default
	sed -i -e "s/EXTRA_GO_FLAGS =/EXTRA_GO_FLAGS = -v /"\
		-e "s/VERSION =.*/VERSION = ${PV}/" src/${EGO_PN}/Makefile || die
}

src_compile() {
	pushd src/${EGO_PN} || die
	GOPATH="${S}" emake ks
	popd || die
}

src_install() {
	pushd src/${EGO_PN} || die
	dobin ks
	dodoc README.md
	popd || die
}