47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
PORTNAME= task
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 3.45.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= tagattie@FreeBSD.org
|
|
COMMENT= Task runner / simpler Make alternative written in Go
|
|
WWW= https://taskfile.dev/
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go:modules
|
|
|
|
GO_MODULE= github.com/go-task/task/v3
|
|
GO_TARGET= ./cmd/task
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= CHANGELOG.md 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-install-COMPLETIONS-on:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d \
|
|
${STAGEDIR}${PREFIX}/share/fish/completions \
|
|
${STAGEDIR}${PREFIX}/share/zsh/site-functions
|
|
${INSTALL_DATA} ${WRKSRC}/completion/bash/${PORTNAME}.bash \
|
|
${STAGEDIR}${PREFIX}/etc/bash_completion.d/${PORTNAME}
|
|
${INSTALL_DATA} ${WRKSRC}/completion/fish/${PORTNAME}.fish \
|
|
${STAGEDIR}${PREFIX}/share/fish/completions/${PORTNAME}.fish
|
|
${INSTALL_DATA} ${WRKSRC}/completion/zsh/_${PORTNAME} \
|
|
${STAGEDIR}${PREFIX}/share/zsh/site-functions/_${PORTNAME}
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|