ponysay/Makefile

99 lines
4.3 KiB
Makefile
Raw Normal View History

2012-07-16 16:15:56 +02:00
all: ponysaytruncater manpages
2012-07-17 19:11:35 +02:00
ponysaytruncater:
gcc -o "ponysaytruncater" "ponysaytruncater.c"
2012-07-17 19:11:35 +02:00
2012-07-16 16:15:56 +02:00
manpages:
gzip -9 < manuals/manpage.6 > manuals/manpage.6.gz
gzip -9 < manuals/manpage.es.6 > manuals/manpage.es.6.gz
2012-07-17 19:11:35 +02:00
ttyponies:
mkdir -p ttyponies
2012-07-17 19:11:35 +02:00
for pony in $$(ls --color=no ponies/); do \
echo "building ttypony: $$pony" ;\
if [[ `readlink "ponies/$$pony"` = "" ]]; then \
ponysay2ttyponysay < "ponies/$$pony" | tty2colourfultty -c 1 -e > "ttyponies/$$pony" ;\
elif [[ ! -f "ttyponies/$$pony" ]]; then \
ln -s `readlink "ponies/$$pony"` "ttyponies/$$pony" ;\
fi \
done
install: all
mkdir -p "$(DESTDIR)/usr/share/ponysay/"
mkdir -p "$(DESTDIR)/usr/share/ponysay/ponies"
mkdir -p "$(DESTDIR)/usr/share/ponysay/ttyponies"
cp -P ponies/*.pony "$(DESTDIR)/usr/share/ponysay/ponies/"
cp -P ttyponies/*.pony "$(DESTDIR)/usr/share/ponysay/ttyponies/"
2012-05-13 20:09:31 +02:00
mkdir -p "$(DESTDIR)/usr/bin/"
install "ponysay" "$(DESTDIR)/usr/bin/ponysay"
install -s "ponysaytruncater" "$(DESTDIR)/usr/bin/ponysaytruncater"
2012-07-18 19:39:04 +02:00
install "ponysaylist.pl" "$(DESTDIR)/usr/bin/ponysaylist.pl"
ln -sf "ponysay" "$(DESTDIR)/usr/bin/ponythink"
mkdir -p "$(DESTDIR)/usr/share/fish/completions/"
install -m "644" "completion/fish_ponysay.fish" "$(DESTDIR)/usr/share/fish/completions/ponysay.fish"
install -m "644" "completion/fish_ponythink.fish" "$(DESTDIR)/usr/share/fish/completions/ponythink.fish"
mkdir -p "$(DESTDIR)/usr/share/zsh/site-functions/"
install "completion/zsh-completion.zsh" "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay"
mkdir -p "$(DESTDIR)/usr/share/bash-completion/completions/"
install "completion/bash-completion.sh" "$(DESTDIR)/usr/share/bash-completion/completions/ponysay"
mkdir -p "$(DESTDIR)/usr/share/licenses/ponysay/"
install "COPYING" "$(DESTDIR)/usr/share/licenses/ponysay/COPYING"
2012-07-12 15:59:47 +02:00
mkdir -p "$(DESTDIR)/usr/share/man/man6"
2012-07-16 16:15:56 +02:00
install "manuals/manpage.6.gz" "$(DESTDIR)/usr/share/man/man6/ponysay.6.gz"
ln -sf "ponysay.6.gz" "$(DESTDIR)/usr/share/man/man6/ponythink.6.gz"
mkdir -p "$(DESTDIR)/usr/share/man/es/man6"
2012-07-16 16:15:56 +02:00
install "manuals/manpage.es.6.gz" "$(DESTDIR)/usr/share/man/es/man6/ponysay.6.gz"
ln -sf "ponysay.6.gz" "$(DESTDIR)/usr/share/man/es/man6/ponythink.6.gz"
2012-07-11 05:08:40 +02:00
2012-07-17 18:43:30 +02:00
@echo -e '\n\n'\
'/--------------------------------------------------\\\n'\
'| ___ |\n'\
'| / (_) o |\n'\
'| \__ _ _ __ |\n'\
'| / / |/ | | / \_| | |\n'\
'| \___/ | |_/|/\__/ \_/|/ |\n'\
'| /| /| |\n'\
'| \| \| |\n'\
'| ____ |\n'\
'| | _ \ ___ _ __ _ _ ___ __ _ _ _ |\n'\
'| | |_) |/ _ \ | '\''_ \ | | | |/ __| / _` || | | | |\n'\
'| | __/| (_) || | | || |_| |\__ \| (_| || |_| | |\n'\
'| |_| \___/ |_| |_| \__, ||___/ \__,_| \__, | |\n'\
'| |___/ |___/ |\n'\
'\\--------------------------------------------------/'
@echo '' | ./ponysay -f ./`if [[ "$$TERM" = "linux" ]]; then echo ttyponies; else echo ponies; fi`/pinkiecannon.pony | tail --lines=30 ; echo -e '\n'
2012-07-17 19:11:35 +02:00
uninstall:
rm -fr "$(DESTDIR)/usr/share/ponysay/ponies"
rm -fr "$(DESTDIR)/usr/share/ponysay/ttyponies"
unlink "$(DESTDIR)/usr/bin/ponysay"
2012-07-18 19:39:04 +02:00
unlink "$(DESTDIR)/usr/bin/ponysaylist.pl"
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"
unlink "$(DESTDIR)/usr/share/bash-completion/completions/ponysay"
2012-07-16 16:15:56 +02:00
unlink "$(DESTDIR)/usr/share/man/man6/ponysay.6.gz"
unlink "$(DESTDIR)/usr/share/man/man6/ponythink.6.gz"
unlink "$(DESTDIR)/usr/share/man/es/man6/ponysay.6.gz"
unlink "$(DESTDIR)/usr/share/man/es/man6/ponythink.6.gz"
2012-07-17 19:11:35 +02:00
2012-05-13 02:01:17 +02:00
clean:
rm -f "ponysaytruncater"
2012-07-16 16:15:56 +02:00
rm manuals/manpage.6.gz
rm manuals/manpage.es.6.gz