# Copyright 2023-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit go-module

DESCRIPTION="Securely store and access AWS credentials in development environments"
HOMEPAGE="https://github.com/ByteNess/aws-vault"
SRC_URI="
	https://github.com/ByteNess/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
	https://distfiles.living180.net/${P}-vendor.tar.xz
"

LICENSE="Apache-2.0 BSD BSD-2 MIT"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="mirror"

BDEPEND="
	>=dev-lang/go-1.26
"

src_compile() {
	ego build -ldflags="-X main.Version=\"${PV}\"" .
}

src_install() {
	dobin "${PN}"
	dodoc README.md USAGE.md
}