PORTNAME= iris DISTVERSIONPREFIX= v DISTVERSION= 0.4.21 CATEGORIES= shells MAINTAINER= tagattie@FreeBSD.org COMMENT= Shell auto-completion tool for your terminal WWW= https://github.com/versenilvis/IRIS LICENSE= BSD0CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= go:1.25+,modules GO_MODULE= github.com/versenilvis/iris GO_TARGET= ./cmd/iris GO_LDFLAGS= -w -X github.com/versenilvis/iris/root.Version=${DISTVERSION} PLIST_FILES= bin/${PORTNAME} PORTDOCS= README.md OPTIONS_DEFINE= COMPLETIONS DOCS OPTIONS_DEFAULT= COMPLETIONS COMPLETIONS_DESC= Build and/or install shell completions COMPLETIONS_PLIST_FILES=etc/bash_completion.d/${PORTNAME} \ share/fish/completions/${PORTNAME}.fish \ share/zsh/site-functions/_${PORTNAME} post-build-COMPLETIONS-on: @${MKDIR} ${WRKSRC}/completions .for sh in bash fish zsh ${GO_WRKDIR_BIN}/${PORTNAME} completion ${sh} > \ ${WRKSRC}/completions/${PORTNAME}.${sh} .endfor post-install-COMPLETIONS-on: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d \ ${STAGEDIR}${PREFIX}/share/fish/completions \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${GO_WRKSRC}/completions/${PORTNAME}.bash \ ${STAGEDIR}${PREFIX}/etc/bash_completion.d/${PORTNAME} ${INSTALL_DATA} ${GO_WRKSRC}/completions/${PORTNAME}.fish \ ${STAGEDIR}${PREFIX}/share/fish/completions/${PORTNAME}.fish ${INSTALL_DATA} ${GO_WRKSRC}/completions/${PORTNAME}.zsh \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include