mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
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
|