mirror of
https://github.com/erkin/ponysay.git
synced 2025-02-16 17:44:23 +01:00
ttyponies.sh merged into Makefile
This commit is contained in:
parent
a29defcd14
commit
d22dd8dd26
3 changed files with 17 additions and 15 deletions
15
Makefile
15
Makefile
|
@ -1,15 +1,26 @@
|
||||||
all: ponysaytruncater manpages
|
all: ponysaytruncater manpages
|
||||||
|
|
||||||
|
|
||||||
ponysaytruncater:
|
ponysaytruncater:
|
||||||
gcc -o "ponysaytruncater" "ponysaytruncater.c"
|
gcc -o "ponysaytruncater" "ponysaytruncater.c"
|
||||||
|
|
||||||
|
|
||||||
manpages:
|
manpages:
|
||||||
gzip -9 < manuals/manpage.6 > manuals/manpage.6.gz
|
gzip -9 < manuals/manpage.6 > manuals/manpage.6.gz
|
||||||
gzip -9 < manuals/manpage.es.6 > manuals/manpage.es.6.gz
|
gzip -9 < manuals/manpage.es.6 > manuals/manpage.es.6.gz
|
||||||
|
|
||||||
|
|
||||||
ttyponies:
|
ttyponies:
|
||||||
mkdir -p 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
|
install: all
|
||||||
mkdir -p "$(DESTDIR)/usr/share/ponysay/"
|
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'
|
@echo '' | ./ponysay -f ./`if [[ "$$TERM" = "linux" ]]; then echo ttyponies; else echo ponies; fi`/pinkiecannon.pony | tail --lines=30 ; echo -e '\n'
|
||||||
|
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -fr "$(DESTDIR)/usr/share/ponysay/ponies"
|
rm -fr "$(DESTDIR)/usr/share/ponysay/ponies"
|
||||||
rm -fr "$(DESTDIR)/usr/share/ponysay/ttyponies"
|
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/ponysay.6.gz"
|
||||||
unlink "$(DESTDIR)/usr/share/man/es/man6/ponythink.6.gz"
|
unlink "$(DESTDIR)/usr/share/man/es/man6/ponythink.6.gz"
|
||||||
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f "ponysaytruncater"
|
rm -f "ponysaytruncater"
|
||||||
rm manuals/manpage.6.gz
|
rm manuals/manpage.6.gz
|
||||||
|
|
6
README
6
README
|
@ -51,11 +51,11 @@ Package building dependencies
|
||||||
Dependencies for pony providers
|
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
|
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)
|
-- Available for Arch:ers in AUR as util-say-git (https://aur.archlinux.org/packages.php?ID=60241)
|
||||||
|
|
11
ttyponies.sh
11
ttyponies.sh
|
@ -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
|
|
||||||
|
|
Loading…
Reference in a new issue