Files
guru/app-admin/terragrunt-bin/terragrunt-bin-0.38.6.ebuild
Vitaly Zdanevich 3e67208a4e app-admon/terragrunt-bin add
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
2022-07-28 15:23:07 +04:00

31 lines
553 B
Bash

# 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}"
}