diff options
author | Joseph Mingrone <jrm@FreeBSD.org> | 2019-01-27 16:27:13 +0000 |
---|---|---|
committer | Joseph Mingrone <jrm@FreeBSD.org> | 2019-01-27 16:27:13 +0000 |
commit | 3894fd54042b065c1a2f301e215b32a73dda54c7 (patch) | |
tree | 90de4c48f028cbdc793d7e3364d4cf5b1fe92f60 /textproc | |
parent | a9b03b8a700168fac95786d2a3c6cd78bcaa80b2 (diff) | |
download | ports-3894fd54042b065c1a2f301e215b32a73dda54c7.tar.gz ports-3894fd54042b065c1a2f301e215b32a73dda54c7.zip |
Notes
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/zsh-autosuggestions/Makefile | 28 | ||||
-rw-r--r-- | textproc/zsh-autosuggestions/distinfo | 3 | ||||
-rw-r--r-- | textproc/zsh-autosuggestions/files/pkg-message.in | 5 | ||||
-rw-r--r-- | textproc/zsh-autosuggestions/pkg-descr | 4 |
5 files changed, 41 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 4afc2b0b81b6..0256838a8c16 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1881,6 +1881,7 @@ SUBDIR += yould SUBDIR += zenxml SUBDIR += zorba + SUBDIR += zsh-autosuggestions SUBDIR += zsh-syntax-highlighting SUBDIR += zu-aspell SUBDIR += zu-hunspell diff --git a/textproc/zsh-autosuggestions/Makefile b/textproc/zsh-autosuggestions/Makefile new file mode 100644 index 000000000000..5266c0675f0a --- /dev/null +++ b/textproc/zsh-autosuggestions/Makefile @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= zsh-autosuggestions +DISTVERSIONPREFIX= v +DISTVERSION= 0.5.0 +CATEGORIES= textproc + +MAINTAINER= jrm@FreeBSD.org +COMMENT= Fish-like autosuggestions for Zsh + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= zsh>=4.3:shells/zsh + +USE_GITHUB= yes +GH_ACCOUNT= zsh-users + +NO_ARCH= yes +NO_BUILD= yes +PLIST_FILES= ${DATADIR}/${PORTNAME}.zsh +SUB_FILES= pkg-message + +do-install: + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/zsh-autosuggestions.zsh ${STAGEDIR}/${DATADIR} + +.include <bsd.port.mk> diff --git a/textproc/zsh-autosuggestions/distinfo b/textproc/zsh-autosuggestions/distinfo new file mode 100644 index 000000000000..686140c2e549 --- /dev/null +++ b/textproc/zsh-autosuggestions/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1548604584 +SHA256 (zsh-users-zsh-autosuggestions-v0.5.0_GH0.tar.gz) = 3067774d3129fa3220f7010d79ee735d1bbea0a07b6bf32c5b38dd37188538d9 +SIZE (zsh-users-zsh-autosuggestions-v0.5.0_GH0.tar.gz) = 23018 diff --git a/textproc/zsh-autosuggestions/files/pkg-message.in b/textproc/zsh-autosuggestions/files/pkg-message.in new file mode 100644 index 000000000000..b478ca7d39e5 --- /dev/null +++ b/textproc/zsh-autosuggestions/files/pkg-message.in @@ -0,0 +1,5 @@ +================================================================================ +Add the line below to your .zshrc to enable auto suggestions. + +source %%DATADIR%%/zsh-autosuggestions.zsh +================================================================================ diff --git a/textproc/zsh-autosuggestions/pkg-descr b/textproc/zsh-autosuggestions/pkg-descr new file mode 100644 index 000000000000..ae4b6be01ab9 --- /dev/null +++ b/textproc/zsh-autosuggestions/pkg-descr @@ -0,0 +1,4 @@ +zsh-autosuggestions enables fast and unobtrusive fish-like autosuggestions +for Zsh. It suggests commands as you type, based on command history. + +WWW: https://github.com/zsh-users/zsh-autosuggestions |