Files
ports/sysutils/hcloud/Makefile
T
Zsolt Udvari 7a8777d16d sysutils/hcloud: Update to 1.48.0
Add fish, bash and zsh completions.

Changelog: https://github.com/hetznercloud/cli/releases/tag/v1.48.0
2024-10-28 11:58:51 +01:00

32 lines
1.0 KiB
Makefile

PORTNAME= hcloud
DISTVERSIONPREFIX= v
DISTVERSION= 1.48.0
CATEGORIES= sysutils
MAINTAINER= uzsolt@FreeBSD.org
COMMENT= Official Hetzner Cloud command-line interface
WWW= https://github.com/hetznercloud/cli
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= go:modules,1.21
GO_MODULE= github.com/hetznercloud/cli
GO_TARGET= ./cmd/hcloud
PLIST_FILES= bin/hcloud \
share/bash-completion/completions/${PORTNAME} \
share/fish/completions/${PORTNAME}.fish \
share/zsh/site_functions/_${PORTNAME}
post-install:
${MKDIR} ${STAGEDIR}${PREFIX}/share/bash-completion/completions/ \
${STAGEDIR}${PREFIX}/share/fish/completions/ \
${STAGEDIR}${PREFIX}/share/zsh/site_functions/
${STAGEDIR}${PREFIX}/bin/hcloud completion bash > ${STAGEDIR}${PREFIX}/share/bash-completion/completions/${PORTNAME}
${STAGEDIR}${PREFIX}/bin/hcloud completion fish > ${STAGEDIR}${PREFIX}/share/fish/completions/${PORTNAME}.fish
${STAGEDIR}${PREFIX}/bin/hcloud completion zsh > ${STAGEDIR}${PREFIX}/share/zsh/site_functions/_${PORTNAME}
.include <bsd.port.mk>