mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	 1b640ac82d
			
		
	
	1b640ac82d
	
	
	
		
			
			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
 |