diff options
author | Pablo Lezaeta <prflr88@gmail.com> | 2012-07-10 23:08:40 -0400 |
---|---|---|
committer | Pablo Lezaeta <prflr88@gmail.com> | 2012-07-10 23:08:40 -0400 |
commit | 63375b31a0c07f60a6ec760710aaa98cab3be905 (patch) | |
tree | 9ccd8d58c3653e4788a4c6b42c5c61f153b9f39e /Makefile | |
parent | bfaaf11d7a9b067b83133fe51ca11044ae1dc9af (diff) | |
download | ponysay-63375b31a0c07f60a6ec760710aaa98cab3be905.tar.gz ponysay-63375b31a0c07f60a6ec760710aaa98cab3be905.tar.bz2 ponysay-63375b31a0c07f60a6ec760710aaa98cab3be905.zip |
Added manpage in Spanish
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -28,6 +28,10 @@ install: all install "manpage.1" "$(DESTDIR)/usr/share/man/man1/ponysay.1" ln -sf "ponysay.1" "$(DESTDIR)/usr/share/man/man1/ponythink.1" + mkdir -p "$(DESTDIR)/usr/share/man/es/man1" + install "manpage.es.1" "$(DESTDIR)/usr/share/man/es/man1/ponysay.1" + ln -sf "ponysay.1" "$(DESTDIR)/usr/share/man/es/man1/ponythink.1" + uninstall: rm -fr "$(DESTDIR)/usr/share/ponysay/ponies" rm -fr "$(DESTDIR)/usr/share/ponysay/ttyponies" @@ -39,6 +43,7 @@ uninstall: unlink "$(DESTDIR)/usr/share/bash-completion/completions/ponysay" unlink "$(DESTDIR)/usr/share/man/man1/ponysay.1" unlink "$(DESTDIR)/usr/share/man/man1/ponythink.1" - + unlink "$(DESTDIR)/usr/share/man/es/man1/ponysay.1" + unlink "$(DESTDIR)/usr/share/man/es/man1/ponysay.1" clean: rm -r "ponysaytruncater" |