blob: b822132ceed6c09ca945d55fc45e80bcd25ae9b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
cat << EOF
> If you get garbage instead of kana characters, then go to preferences and select
> a Japanese friendly font, for example:
>
> - FreeSerif or FreeSans (package: ttf-freefont)
> - AR PL ShanHeiSun Uni (package: ttf-arphic-uming)
> - AR PL ZenKai Uni (package: ttf-arphic-ukai)
EOF
}
post_upgrade() {
post_install
}
op=$1
shift
$op $*
|