gentoo/app-admin/aws-session-manager-plugin/aws-session-manager-plugin-1.2.764.0.ebuild
Arthur Zamarin 9417cbf870
app-admin/aws-session-manager-plugin: add 1.2.764.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-11-22 09:51:18 +02:00

35 lines
872 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module systemd
DESCRIPTION="AWS Session Manager Plugin for aws-cli"
HOMEPAGE="https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html
https://github.com/aws/session-manager-plugin"
SRC_URI="https://github.com/aws/session-manager-plugin/archive/${PV}.tar.gz -> ${P}.tar.gz"
S=${WORKDIR}/${P#aws-}
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
src_prepare() {
default
sed -e '/^build-linux/s/ checkstyle//' \
-e 's/-s //g' -i makefile || die
}
src_compile() {
emake GO_BUILD="go build" build-linux-${GOARCH}
}
src_install() {
dobin bin/linux_${GOARCH}/ssmcli bin/linux_${GOARCH}_plugin/session-manager-plugin
local DOCS=( README.md RELEASENOTES.md )
einstalldocs
systemd_dounit packaging/linux/ssmcli.service
}