c1fe5b8121
zsh-completions is the additional completion definitions for Zsh. This projects aims at gathering/developing new completion scripts that are not available in Zsh yet. The scripts may be contributed to the Zsh project when stable enough. WWW: https://github.com/zsh-users/zsh-completions
26 lines
595 B
Makefile
26 lines
595 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zsh-completions
|
|
PORTVERSION= 0.30.0
|
|
CATEGORIES= shells
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Additional completion definitions for Zsh
|
|
|
|
LICENSE= ZSH
|
|
LICENSE_NAME= ZSH license
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
GH_ACCOUNT= zsh-users
|
|
USE_GITHUB= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions/
|
|
${INSTALL_DATA} ${WRKSRC}/src/* ${STAGEDIR}${PREFIX}/share/zsh/site-functions/
|
|
|
|
.include <bsd.port.mk>
|