* 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.
21 lines
463 B
Makefile
21 lines
463 B
Makefile
PORTNAME= kapp
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.63.3
|
|
PORTREVISION= 4
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= timp87@gmail.com
|
|
COMMENT= Simple deployment tool for Kubernetes
|
|
WWW= https://github.com/carvel-dev/kapp
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USES= go:modules
|
|
GO_MODULE= github.com/carvel-dev/${PORTNAME}
|
|
GO_TARGET= ./cmd/${PORTNAME}
|
|
GO_BUILDFLAGS= -ldflags="-X carvel.dev/kapp/pkg/kapp/version.Version=v${DISTVERSION}"
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|