0e57149de9
NB: this implementation is awfully cut-n-paste one, there are lots of common code with install2 which are subject to careful surgery
23 lines
451 B
Bash
Executable File
23 lines
451 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# remove unused fonts
|
|
cd /usr/share/fonts/bitmap/misc/ &&
|
|
rm -f *ja.* *ko.* han* gb* jis* k14* rk* *rk.* *kana* cl* *JIS*
|
|
|
|
# drop unneeded translations
|
|
cd /usr/share/qt4/translations/ && rm -f *_zh* *_ja*
|
|
|
|
# l10n
|
|
cd /usr/share/X11/locale && rm -rf ja* ko* th* vi* zh*
|
|
|
|
# xkb
|
|
cd /usr/share/X11/xkb/symbols && rm -rf jp kr th vn cn
|
|
|
|
# locales
|
|
cd /usr/lib*/locale && rm -rf ja_* ko_* th_* zh_*
|
|
|
|
# gconv
|
|
cd /usr/lib*/gconv && rm -f JIS* T*
|
|
|
|
:
|