Files
guru/app-admin/chamber/chamber-2.13.2.ebuild
Alexey Zapparov d46ab1acd4 app-admin/chamber: add 2.13.2
Signed-off-by: Alexey Zapparov <alexey@zapparov.com>
2023-08-16 22:07:02 +02:00

31 lines
587 B
Bash

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Managing secrets in AWS SSM Parameter Store"
HOMEPAGE="https://github.com/segmentio/chamber"
SRC_URI="
https://github.com/segmentio/chamber/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://github.com/ixti/chamber/releases/download/v${PV}/${P}-vendor.tar.xz
"
LICENSE="Apache-2.0 BSD BSD-2 MIT"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="
>=dev-lang/go-1.19
"
src_compile() {
ego build
}
src_install() {
dobin "${PN}"
dodoc README.md CHANGELOG.md
}