blob: 6ce1a6fc4bbe0ea287c428e13c2e7cd4cd395a06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
EGO_PN=github.com/awslabs/${PN}
inherit go-module
SRC_URI="https://${PN}-releases.s3.us-east-2.amazonaws.com/${PV}/release.tar.gz -> ${P}.tar.gz"
SRC_URI+=" ${P}-deps.tar.xz"
DESCRIPTION="Automatically gets credentials for Amazon ECR on docker push/docker pull"
HOMEPAGE="https://github.com/awslabs/amazon-ecr-credential-helper"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${P}/ecr-login/cli/docker-credential-ecr-login"
src_compile() {
ego build
}
src_install() {
dobin docker-credential-ecr-login
default
}
|