Call them wxWidgets-x.y.z-docs-nnn instead of wxWidgets-docs-nnn.x.y.z. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72026 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			31 lines
		
	
	
		
			710 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			710 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# This script creates archives of HTML documentation in  tar.bz2 and zip
 | 
						|
# formats. It relies on docs/doxygen/regen.sh to really generate the docs.
 | 
						|
#
 | 
						|
# The script should be ran from the root of wxWidgets checkout and creates the
 | 
						|
# output files in its parent directory.
 | 
						|
 | 
						|
version=$1
 | 
						|
if [ -z "$version" ]; then
 | 
						|
    echo "Must specify the distribution version." >&2
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
set -e
 | 
						|
set -x
 | 
						|
 | 
						|
docs_dir_name=wxWidgets-$version
 | 
						|
docs_file_basename=wxWidgets-$version-docs-html
 | 
						|
 | 
						|
cd docs/doxygen
 | 
						|
./regen.sh html
 | 
						|
cd out
 | 
						|
mv html $docs_dir_name
 | 
						|
tar cjf ../../../../$docs_file_basename.tar.bz2 $docs_dir_name
 | 
						|
cd $docs_dir_name
 | 
						|
zip -q -r ../../../../../$docs_file_basename.zip .
 | 
						|
 | 
						|
cd ..
 | 
						|
mv $docs_dir_name html
 |