Files
guru/app-admin/terragrunt-bin/terragrunt-bin-0.93.11.ebuild
Gabriel de Moura Dutra 5bbcef6235 app-admin/terragrunt-bin: Add 0.93.11, adopt.
drop old versions

Signed-off-by: Gabriel de Moura Dutra <hi@dutra.sh>
2025-11-30 13:37:10 -03:00

24 lines
487 B
Bash

# Copyright 2022-2023 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"
S="${WORKDIR}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="-* ~amd64"
QA_FLAGS_IGNORED=".*"
src_unpack() {
cp "${DISTDIR}/${P}.bin" terragrunt || die
}
src_install() {
dobin terragrunt
}