forked from Lainports/freebsd-ports
26 lines
608 B
Makefile
26 lines
608 B
Makefile
PORTNAME= eksctl
|
|
PORTVERSION= 0.94.0
|
|
PORTREVISION= 11
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= LOCAL/danilo
|
|
|
|
MAINTAINER= danilo@FreeBSD.org
|
|
COMMENT= CLI for Amazon EKS
|
|
WWW= https://eksctl.io/
|
|
|
|
LICENSE= APACHE20
|
|
|
|
RUN_DEPENDS= kubectl:sysutils/kubectl \
|
|
aws-iam-authenticator:security/aws-iam-authenticator
|
|
|
|
USES= go:modules tar:xz
|
|
|
|
PORTSCOUT= limit:^[0-9\.]*$$
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
GO_TARGET= ./cmd/${PORTNAME}
|
|
GO_BUILDFLAGS= -ldflags="-X github.com/weaveworks/eksctl/pkg/version.gitCommit=${PORTVERSION} \
|
|
-X github.com/weaveworks/eksctl/pkg/version.builtAt=$$(date +'%s')"
|
|
|
|
.include <bsd.port.mk>
|