diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-05-12 02:19:59 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-05-12 02:19:59 +0200 |
commit | a3677eae4affbe53430084f95b8d111a1cbd6245 (patch) | |
tree | c28eedbdb74d055ac4fd992ef96ad3328778639d | |
parent | fc2e89f44ea00e2c2082056426c7ef5793caa6c7 (diff) | |
download | ponysay-a3677eae4affbe53430084f95b8d111a1cbd6245.tar.gz ponysay-a3677eae4affbe53430084f95b8d111a1cbd6245.tar.bz2 ponysay-a3677eae4affbe53430084f95b8d111a1cbd6245.zip |
From ponysay-git in AUR by "gtmanfred" with adaption to [erkin]'s last push, and uninstall rutine
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | completion/zsh-completion.zsh | 11 |
2 files changed, 15 insertions, 0 deletions
@@ -7,6 +7,8 @@ install: install "ponysay" "$(DESTDIR)/usr/bin/ponysay" install -s "ponysaytruncater" "$(DESTDIR)/usr/bin/ponysaytruncater" ln -sf "ponysay" "$(DESTDIR)/usr/bin/ponythink" + install "zsh-completion.zsh" "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay" + install "COPYING" "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" uninstall: rm -fr "$(DESTDIR)/usr/share/ponies" @@ -14,3 +16,5 @@ uninstall: unlink "$(DESTDIR)/usr/bin/ponysay" unlink "$(DESTDIR)/usr/bin/ponysaytruncater" unlink "$(DESTDIR)/usr/bin/ponythink" + unlink "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay" + unlink "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" diff --git a/completion/zsh-completion.zsh b/completion/zsh-completion.zsh new file mode 100644 index 0000000..26116d2 --- /dev/null +++ b/completion/zsh-completion.zsh @@ -0,0 +1,11 @@ +#compdef ponysay +_shortopts=( + '-v[Show version and exit]' + '-h[Show this help and exit]' + '-l[list ponyfiles]' + '-f[Select a pony (either a filename or a ponyname]: :_path_files -W "/usr/share/ponies" -g "*(\:r)"' + '-W[The screen column where the message should be wrapped]' + ) +_arguments -s : \ + "$_shortopts[@]" + |