* Ports that were pinned to a deprecated version of Go (1.23 or older) have been unpinned. * Ports that were pinned to a still-supported version of Go (1.24 or newer) have been converted to requesting that as their minimum Go version. * Ports that had been forcibly deprecated for pinning an expired Go version have been undeprecated.
24 lines
474 B
Makefile
24 lines
474 B
Makefile
PORTNAME= cloud-nuke
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.45.0
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= dutra@FreeBSD.org
|
|
COMMENT= Cleaning up your cloud accounts
|
|
WWW= https://github.com/gruntwork-io/cloud-nuke
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USES= cpe go:modules
|
|
|
|
CPE_VENDOR= gruntwork-io
|
|
GO_MODULE= github.com/gruntwork-io/cloud-nuke
|
|
GO_BUILDFLAGS= -ldflags "\
|
|
-s -w \
|
|
-X main.VERSION=${DISTVERSION}"
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|