updated on Sat Jan 14 00:11:12 UTC 2012
[aur-mirror.git] / mozc-svn / uim-mozc.install
blob586121d9a1afb17aae3494fe1c5cf59a6260d77a
1 post_install() {
2   echo -n "Registering mozc on uim..."
3   uim-module-manager --register mozc
4   [[ $? != 0 ]] && echo "Failed." || echo "Done."
6   cat << _EOF
7   ==> You must run the following command to use mozc
8   ==> whenever you upgrade or (re-)install uim.
10   \`sudo uim-module-manager --register mozc'
12 _EOF
15 post_remove() {
16   echo -n "Unregistering mozc from uim..."
17   uim-module-manager --unregister mozc
18   [[ $? != 0 ]] && echo "Failed." || echo "Done."