diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-05-12 03:00:21 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-05-12 03:00:21 +0200 |
commit | e76318dd681f6279e12f70ef7fb008806ef79e33 (patch) | |
tree | 1b6afe6fea84da43c11cd9170fd736a005957be5 /Makefile | |
parent | 6b2661f1235534e800a9d3070a73e7c0e6262bfc (diff) | |
download | ponysay-e76318dd681f6279e12f70ef7fb008806ef79e33.tar.gz ponysay-e76318dd681f6279e12f70ef7fb008806ef79e33.tar.bz2 ponysay-e76318dd681f6279e12f70ef7fb008806ef79e33.zip |
... and (un)install + correction on last push
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,8 +7,9 @@ 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 "completion/zsh-completion.zsh" "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay" install "COPYING" "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" + install "completion/bash-completion.sh" "$(DESTDIR)/usr/share/bash-completion/completions/ponysay" uninstall: rm -fr "$(DESTDIR)/usr/share/ponies" @@ -18,3 +19,4 @@ uninstall: unlink "$(DESTDIR)/usr/bin/ponythink" unlink "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay" unlink "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" + unlink "$(DESTDIR)/usr/share/bash-completion/completions/ponysay" |