New port: shells/zsh-antigen
Antigen is a small set of functions that help you easily manage your Z shell (zsh) plugins, called bundles. The concept is pretty much the same as bundles in a typical vim+pathogen setup. Antigen is to zsh, what Vundle is to vim. WWW: https://github.com/zsh-users/antigen PR: 217706 Submitted by: Victor <gudfitz@gmail.com>
This commit is contained in:
parent
89626e215e
commit
8e41b33ef0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=472672
5 changed files with 41 additions and 0 deletions
|
@ -49,6 +49,7 @@
|
|||
SUBDIR += wcd
|
||||
SUBDIR += xonsh
|
||||
SUBDIR += zsh
|
||||
SUBDIR += zsh-antigen
|
||||
SUBDIR += zsh-navigation-tools
|
||||
|
||||
.include <bsd.port.subdir.mk>
|
||||
|
|
30
shells/zsh-antigen/Makefile
Normal file
30
shells/zsh-antigen/Makefile
Normal file
|
@ -0,0 +1,30 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= zsh-antigen
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.2.3
|
||||
CATEGORIES= shells
|
||||
|
||||
MAINTAINER= gudfitz@gmail.com
|
||||
COMMENT= Tool for managing Zshell plugins inspired by Vundle
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
RUN_DEPENDS= zsh>=4.3.11:shells/zsh \
|
||||
git:devel/git
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= zsh-users
|
||||
GH_PROJECT= antigen
|
||||
|
||||
NO_ARCH= yes
|
||||
NO_BUILD= yes
|
||||
PLIST_FILES= ${DATADIR}/antigen.zsh
|
||||
SUB_FILES= pkg-message
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/bin/antigen.zsh ${STAGEDIR}${DATADIR}
|
||||
|
||||
.include <bsd.port.mk>
|
3
shells/zsh-antigen/distinfo
Normal file
3
shells/zsh-antigen/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1529013823
|
||||
SHA256 (zsh-users-antigen-v2.2.3_GH0.tar.gz) = bd3f1077050d52f459bc30fa3f025c44c528d625b4924a2f487fd2bacb89d61e
|
||||
SIZE (zsh-users-antigen-v2.2.3_GH0.tar.gz) = 72679
|
1
shells/zsh-antigen/files/pkg-message.in
Normal file
1
shells/zsh-antigen/files/pkg-message.in
Normal file
|
@ -0,0 +1 @@
|
|||
Antigen can be found at %%DATADIR%%/antigen.zsh
|
6
shells/zsh-antigen/pkg-descr
Normal file
6
shells/zsh-antigen/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
Antigen is a small set of functions that help you easily manage
|
||||
your Z shell (zsh) plugins, called bundles. The concept is pretty
|
||||
much the same as bundles in a typical vim+pathogen setup. Antigen
|
||||
is to zsh, what Vundle is to vim.
|
||||
|
||||
WWW: https://github.com/zsh-users/antigen
|
Loading…
Reference in a new issue