mirror of
https://github.com/erkin/ponysay
synced 2024-11-15 08:07:10 +00:00
m
This commit is contained in:
parent
8d662d5127
commit
d136ed9455
3 changed files with 8 additions and 2 deletions
|
@ -41,7 +41,7 @@ pdfmanual()
|
|||
texi2pdf "manuals/ponysay.texinfo"
|
||||
git add "manuals/ponysay.texinfo" "ponysay.pdf"
|
||||
for ext in `echo aux cp cps fn ky log pg toc tp vr`; do
|
||||
if [ -f "ponysay.\$\$ext" ]; then
|
||||
if [ -f "ponysay.$ext" ]; then
|
||||
unlink "ponysay.$ext"
|
||||
fi
|
||||
done
|
||||
|
@ -51,6 +51,12 @@ pdfmanual()
|
|||
}
|
||||
|
||||
|
||||
pdf()
|
||||
{
|
||||
pdfmanual "$@"
|
||||
}
|
||||
|
||||
|
||||
tag()
|
||||
{
|
||||
version=`./setup.py version`
|
||||
|
|
BIN
ponysay.pdf
BIN
ponysay.pdf
Binary file not shown.
2
setup.py
2
setup.py
|
@ -505,7 +505,7 @@ class Setup():
|
|||
def clean(self):
|
||||
print('\033[1;34m::\033[39mCleaning...\033[21m')
|
||||
|
||||
files = ['ponysay.info', 'ponysay.info.gz', 'ponysay.info.xz', 'ponysay.install']
|
||||
files = ['ponysay.info', 'ponysay.info.gz', 'ponysay.info.xz', 'ponysay.pdf.gz', 'ponysay.pdf.xz', 'ponysay.install']
|
||||
dirs = ['quotes']
|
||||
for comp in ['install', 'gz', 'xz']:
|
||||
for man in manpages:
|
||||
|
|
Loading…
Reference in a new issue