mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 02:16:27 -04:00
Zsh-fast-syntax-highlighting enables highlighting of commands whilst they are typed at an interactive zsh prompt. This helps in reviewing commands before running them, particularly in catching syntax errors. Compared to zsh-syntax-highlighting, this package is more optimized and feature-rich. WWW: https://github.com/zdharma-continuum/fast-syntax-highlighting
28 lines
659 B
Makefile
28 lines
659 B
Makefile
PORTNAME= zsh-fast-syntax-highlighting
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.55
|
|
CATEGORIES= shells
|
|
|
|
MAINTAINER= phantrungson17@gmail.com
|
|
COMMENT= Optimized and extended zsh-syntax-highlighting
|
|
WWW= https://github.com/zdharma-continuum/fast-syntax-highlighting
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= zsh>=5.4:shells/zsh
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= zdharma-continuum
|
|
GH_PROJECT= fast-syntax-highlighting
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} "! -path \./\.* ! -name *\.bak ! -name *\.orig"
|
|
|
|
.include <bsd.port.mk>
|