aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSven-Hendrik Haase <sh@lutzhaase.com>2012-05-12 06:29:07 -0700
committerSven-Hendrik Haase <sh@lutzhaase.com>2012-05-12 06:29:07 -0700
commit8da0695c47799fc34c3a8b749d99e57943a35d13 (patch)
treecff1f83359963b806670cd94d8ce9b9861c0ff81 /Makefile
parente76318dd681f6279e12f70ef7fb008806ef79e33 (diff)
parent2c849198f6847a814874563b604c4b2dd93e20e6 (diff)
downloadponysay-8da0695c47799fc34c3a8b749d99e57943a35d13.tar.gz
ponysay-8da0695c47799fc34c3a8b749d99e57943a35d13.tar.bz2
ponysay-8da0695c47799fc34c3a8b749d99e57943a35d13.zip
Merge pull request #16 from sycoso/master
Fixed the Makefile so it works on ubuntu 12.04 without zsh
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 53880ef..b087bb1 100644
--- a/Makefile
+++ b/Makefile
@@ -2,13 +2,15 @@ install:
gcc -o "ponysaytruncater" "ponysaytruncater.c"
mkdir -p "$(DESTDIR)/usr/share/ponies"
mkdir -p "$(DESTDIR)/usr/share/ttyponies"
- cp -r "ponies/*.pony" "$(DESTDIR)/usr/share/ponies/"
- cp -r "ttyponies/*.pony" "$(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 -s "ponysaytruncater" "$(DESTDIR)/usr/bin/ponysaytruncater"
ln -sf "ponysay" "$(DESTDIR)/usr/bin/ponythink"
- install "completion/zsh-completion.zsh" "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay"
+ 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"
+ mkdir -p "$(DESTDIR)/usr/share/bash-completion/completions/"
install "completion/bash-completion.sh" "$(DESTDIR)/usr/share/bash-completion/completions/ponysay"
uninstall:
@@ -17,6 +19,6 @@ uninstall:
unlink "$(DESTDIR)/usr/bin/ponysay"
unlink "$(DESTDIR)/usr/bin/ponysaytruncater"
unlink "$(DESTDIR)/usr/bin/ponythink"
- unlink "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay"
+ 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"