mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	MacOSX packages using PackageMaker - renamed support-files/PKG -> support-files/SCO (PKG is used in MacOS X terminology as well)
		
			
				
	
	
		
			18 lines
		
	
	
		
			323 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			323 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
CHAR="$1"
 | 
						|
case "$1" in 
 | 
						|
 [uU]*) 
 | 
						|
   CHAR=ujis 
 | 
						|
   ;; 
 | 
						|
 [sS]*) 
 | 
						|
   CHAR=sjis 
 | 
						|
   ;; 
 | 
						|
esac 
 | 
						|
 | 
						|
cp -r Docs/* PKG/tmp-${CHAR}/usr/local/share/doc/mysql/
 | 
						|
cp INSTALL-SOURCE* COPYING* MIRRORS README* PKG/tmp-${CHAR}/usr/local/share/doc/mysql/
 | 
						|
 | 
						|
cd PKG/tmp-${CHAR}/usr/local/share/doc/mysql/
 | 
						|
gzip *.txt *.texi *.info *.pdf
 |