mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-10 12:08:43 -04:00
29 lines
681 B
Bash
29 lines
681 B
Bash
# Copyright 2023 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/99designs/aws-vault"
|
|
SRC_URI="
|
|
https://github.com/99designs/aws-vault/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
|
https://github.com/ixti/aws-vault/releases/download/v${PV}/${P}-vendor.tar.xz
|
|
"
|
|
|
|
LICENSE="Apache-2.0 BSD BSD-2 MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
go build -ldflags "-s -w -X \"main.Version=${PV}\"" -o "${PN}" || die "go build failed"
|
|
}
|
|
|
|
src_install() {
|
|
dobin "${PN}"
|
|
dodoc README.md USAGE.md
|
|
}
|