git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4539 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| #----------------------------------------------------------------------
 | |
| # Make a source distribution as a tar.gz file.  This script should be
 | |
| # run from the directory that holds the wxPython dir (../..) and be
 | |
| # given a version number as an parameter.  The best way to do this is
 | |
| # run "make dist" in the wxPython/src/ directory.
 | |
| #----------------------------------------------------------------------
 | |
| 
 | |
| if [ -z $1 ]; then
 | |
|     echo "Please specify a version number on the command line."
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| if [ ! -d wxPython ]; then
 | |
|     echo "Please run this script from the directory containing the wxPython directory."
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| cp $WXWIN/docs/gpl.txt wxPython
 | |
| cp $WXWIN/docs/lgpl.txt wxPython
 | |
| cp $WXWIN/docs/licence.txt wxPython
 | |
| cp $WXWIN/docs/licendoc.txt wxPython
 | |
| cp $WXWIN/docs/preamble.txt wxPython
 | |
| 
 | |
| rm -f wxPython/distrib/filelist
 | |
| for x in `cat wxPython/distrib/wxPython.rsp`; do
 | |
|     ls $x >> wxPython/distrib/filelist
 | |
| done
 | |
| 
 | |
| 
 | |
| tar cf wxPython/distrib/dist-temp.tar -T wxPython/distrib/filelist
 | |
| cd wxPython/distrib
 | |
| tar xf dist-temp.tar
 | |
| rm dist-temp.tar
 | |
| mv wxPython wxPython-$1
 | |
| rm wxPython-$1/src/gtk/helpers.cpp
 | |
| 
 | |
| tar cvf wxPython-$1.tar wxPython-$1
 | |
| gzip wxPython-$1.tar
 | |
| 
 | |
| rm -rf wxPython-$1
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 |