diff options
author | William Hubbs <williamh@gentoo.org> | 2022-08-04 11:46:05 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2022-08-04 11:48:20 -0500 |
commit | 75ae20ec410a378c50982d0042768ba68e2e8219 (patch) | |
tree | fd3831651c1f1b86c5ecb1420cd412eb2ed16f79 /sys-cluster/cilium-cli/cilium-cli-0.12.1.ebuild | |
parent | dev-java/xsdlib: Stabilize 2013.6.1 ppc64, #863611 (diff) | |
download | gentoo-75ae20ec410a378c50982d0042768ba68e2e8219.tar.gz gentoo-75ae20ec410a378c50982d0042768ba68e2e8219.tar.bz2 gentoo-75ae20ec410a378c50982d0042768ba68e2e8219.zip |
sys-cluster/cilium-cli: new package, add 0.12.1
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'sys-cluster/cilium-cli/cilium-cli-0.12.1.ebuild')
-rw-r--r-- | sys-cluster/cilium-cli/cilium-cli-0.12.1.ebuild | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sys-cluster/cilium-cli/cilium-cli-0.12.1.ebuild b/sys-cluster/cilium-cli/cilium-cli-0.12.1.ebuild new file mode 100644 index 000000000000..98a573711555 --- /dev/null +++ b/sys-cluster/cilium-cli/cilium-cli-0.12.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module + +DESCRIPTION="Next generation command line interface for cilium" +HOMEPAGE="https://cilium.io" +SRC_URI="https://github.com/cilium/cilium-cli/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +src_compile() { + emake VERSION=v${PV} +} + +src_install() { + dobin cilium +} |