mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-21 12:54:56 +00:00
https://origsvn.digium.com/svn/asterisk/branches/10 ................ r339586 | lmadsen | 2011-10-06 08:43:21 -0500 (Thu, 06 Oct 2011) | 16 lines Merged revisions 339566 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r339566 | lmadsen | 2011-10-05 16:30:11 -0500 (Wed, 05 Oct 2011) | 8 lines Update prep_tarball script to download pre-exported documentation. I've updated the prep_tarball script to now download the pre-exported documentation from the Asterisk wiki. This will give us more control over what is being included in the tarball releases, and will make both the PDF and HTML exported documentation look much better (especially when viewing from a console). (Closes issue ASTERISK-18677) ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@339587 65c4cc65-6c06-0410-ace0-fbb531ad65f3
30 lines
1.1 KiB
Bash
Executable File
30 lines
1.1 KiB
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# This script will be executed by the 'mkrelease' script to do any tasks
|
|
# necessary during tarball creation of this project.
|
|
#
|
|
# It will be executed from the top-level directory of the project.
|
|
|
|
make -C sounds MENUSELECT_CORE_SOUNDS=CORE-SOUNDS-EN-GSM MENUSELECT_MOH=MOH-OPSOUND-WAV WGET=wget DOWNLOAD=wget all
|
|
|
|
branch=$1
|
|
|
|
if [ -z "$branch" ]
|
|
then
|
|
echo "No branch specified. Exiting."
|
|
exit 1
|
|
fi
|
|
|
|
hash unzip 2>&- || { echo >&2 "The unzip application is required but was not found. Aborting."; exit 1; }
|
|
|
|
cd doc
|
|
echo "Downloading the PDF and HTML documentation from the Asterisk wiki (this will take a minute) ..."
|
|
wget https://wiki.asterisk.org/wiki/download/attachments/19005471/Asterisk-Admin-Guide-$branch.pdf
|
|
wget https://wiki.asterisk.org/wiki/download/attachments/19005471/Asterisk-Admin-Guide-$branch.html.zip
|
|
echo "Extracting HTML Admin Guide"
|
|
unzip Asterisk-Admin-Guide-$branch.html.zip
|
|
mv AST/ Asterisk-Admin-Guide/
|
|
mv Asterisk-Admin-Guide-1.8.pdf Asterisk-Admin-Guide.pdf
|
|
rm -f Asterisk-Admin-Guide-$branch.html.zip
|
|
echo "Documentation downloaded. Goodbye!"
|