app-admon/terragrunt-bin add

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
This commit is contained in:
Vitaly Zdanevich
2022-07-28 15:23:07 +04:00
parent 7435fe3edb
commit 3e67208a4e
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST terragrunt-bin-0.38.6.bin 35379973 BLAKE2B 03d6d21a933aac91775d15e6f4e3f7434353bea9e8b4dd1ce7add38f86aebb78cbfb91cc7d6aacc3d96945f1c07713e27f20e4e15a616bfa6d2d395938a7831d SHA512 d72c821de9bc8c5df3432e7f2e4f105c222fb303f80775e2f5798d54686d00c15ff064092b5bff6a8808c575bf921fa2afd0b22e05def4cc47067a13b6560192

View File

@@ -0,0 +1,30 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A thin wrapper for Terraform"
HOMEPAGE="https://www.gruntwork.io"
SRC_URI="https://github.com/gruntwork-io/${PN%-bin}/releases/download/v${PV}/terragrunt_linux_amd64 -> ${P}.bin"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
dev-lang/go
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_unpack() {
mkdir -p -- "${S}"
cp -- "${DISTDIR}/${A}" "${S}/${PN%-bin}"
}
src_compile() { :; }
src_install() {
dobin "${S}/${PN%-bin}"
}