mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
1b640ac82d
MacOSX packages using PackageMaker - renamed support-files/PKG -> support-files/SCO (PKG is used in MacOS X terminology as well)
17 lines
323 B
Bash
17 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
|