| 
									
										
										
										
											2006-10-17 22:32:19 +00:00
										 |  |  | #!/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. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-18 20:29:37 +00:00
										 |  |  | make -C sounds MENUSELECT_CORE_SOUNDS=CORE-SOUNDS-EN-GSM MENUSELECT_MOH=MOH-OPSOUND-WAV WGET=wget DOWNLOAD=wget all | 
					
						
							| 
									
										
										
										
											2007-03-15 22:36:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 13:43:52 +00:00
										 |  |  | branch=$1 | 
					
						
							| 
									
										
										
										
											2010-11-16 20:50:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 13:43:52 +00:00
										 |  |  | if [ -z "$branch" ] | 
					
						
							|  |  |  | then | 
					
						
							|  |  |  | 	echo "No branch specified. Exiting." | 
					
						
							| 
									
										
										
										
											2010-11-16 22:41:32 +00:00
										 |  |  | 	exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 13:43:52 +00:00
										 |  |  | hash unzip 2>&- || { echo >&2 "The unzip application is required but was not found. Aborting."; exit 1; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 22:14:25 +00:00
										 |  |  | cd doc | 
					
						
							| 
									
										
										
										
											2011-10-06 13:43:52 +00:00
										 |  |  | echo "Downloading the PDF and HTML documentation from the Asterisk wiki (this will take a minute) ..." | 
					
						
							| 
									
										
										
										
											2013-09-18 17:23:49 +00:00
										 |  |  | wget https://wiki.asterisk.org/wiki/download/attachments/19005471/Asterisk-$branch-Reference.pdf | 
					
						
							|  |  |  | wget https://wiki.asterisk.org/wiki/download/attachments/19005471/Asterisk-Admin-Guide.pdf | 
					
						
							| 
									
										
										
										
											2011-10-06 13:43:52 +00:00
										 |  |  | 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/ | 
					
						
							|  |  |  | rm -f Asterisk-Admin-Guide-$branch.html.zip | 
					
						
							|  |  |  | echo "Documentation downloaded. Goodbye!" |