diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-05-12 18:05:12 -0700 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-05-12 18:05:12 -0700 |
commit | 456ab9c9c32f320dae26d93d1afdcf306b2b8fce (patch) | |
tree | 4bf1bf9c133b0f2fd7fa4ef65ae23c0ad9e01329 /Makefile | |
parent | 96480e57a0e0a793a31a1a65df0452e95cf092d7 (diff) | |
parent | e147227c1c8e86b69ee2cfa792f225954ffdc4d2 (diff) | |
download | ponysay-456ab9c9c32f320dae26d93d1afdcf306b2b8fce.tar.gz ponysay-456ab9c9c32f320dae26d93d1afdcf306b2b8fce.tar.bz2 ponysay-456ab9c9c32f320dae26d93d1afdcf306b2b8fce.zip |
Merge pull request #17 from etu/master
Repaired missing directories in isolated install enviroments and added make clean
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -4,12 +4,12 @@ install: mkdir -p "$(DESTDIR)/usr/share/ttyponies" cp -r ponies/*.pony "$(DESTDIR)/usr/share/ponies/" cp -r ttyponies/*.pony "$(DESTDIR)/usr/share/ttyponies/" - install "ponysay" "$(DESTDIR)/usr/bin/ponysay" + install -D "ponysay" "$(DESTDIR)/usr/bin/ponysay" install -s "ponysaytruncater" "$(DESTDIR)/usr/bin/ponysaytruncater" ln -sf "ponysay" "$(DESTDIR)/usr/bin/ponythink" if [ -d "$(DESTDIR)/usr/share/zsh/site-functions/" ]; then install "completion/zsh-completion.zsh" "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay"; fi mkdir -p "$(DESTDIR)/usr/share/bash-completion/completions/" - install "COPYING" "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" + install -D "COPYING" "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" mkdir -p "$(DESTDIR)/usr/share/bash-completion/completions/" install "completion/bash-completion.sh" "$(DESTDIR)/usr/share/bash-completion/completions/ponysay" @@ -22,3 +22,6 @@ uninstall: if [ -e "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay" ]; then unlink "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay"; fi unlink "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" unlink "$(DESTDIR)/usr/share/bash-completion/completions/ponysay" + +clean: + rm -r ponysaytruncater |