ttyponies.sh merged into Makefile

This commit is contained in:
Mattias Andrée 2012-07-17 19:11:35 +02:00
parent a29defcd14
commit d22dd8dd26
3 changed files with 17 additions and 15 deletions

View file

@ -1,15 +1,26 @@
all: ponysaytruncater manpages
ponysaytruncater:
gcc -o "ponysaytruncater" "ponysaytruncater.c"
manpages:
gzip -9 < manuals/manpage.6 > manuals/manpage.6.gz
gzip -9 < manuals/manpage.es.6 > manuals/manpage.es.6.gz
ttyponies:
mkdir -p ttyponies
./ttyponies.sh
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/"
@ -58,6 +69,7 @@ install: all
'\\--------------------------------------------------/'
@echo '' | ./ponysay -f ./`if [[ "$$TERM" = "linux" ]]; then echo ttyponies; else echo ponies; fi`/pinkiecannon.pony | tail --lines=30 ; echo -e '\n'
uninstall:
rm -fr "$(DESTDIR)/usr/share/ponysay/ponies"
rm -fr "$(DESTDIR)/usr/share/ponysay/ttyponies"
@ -72,6 +84,7 @@ uninstall:
unlink "$(DESTDIR)/usr/share/man/es/man6/ponysay.6.gz"
unlink "$(DESTDIR)/usr/share/man/es/man6/ponythink.6.gz"
clean:
rm -f "ponysaytruncater"
rm manuals/manpage.6.gz

6
README
View file

@ -51,11 +51,11 @@ Package building dependencies
Dependencies for pony providers
===============================
make : required to run `make ttyponies`
make : required to run `make -B ttyponies`
coreutils : ln and readlink are used in ttyponies.sh
coreutils : ln and readlink are used in the ttyponies subscript
bash : required to run ttyponies.sh
bash : used in the ttyponies subscript
util-say : used by ttyponies.sh to builder ttyponies from xterm ponies
-- Available for Arch:ers in AUR as util-say-git (https://aur.archlinux.org/packages.php?ID=60241)

View file

@ -1,11 +0,0 @@
#!/bin/bash
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