summarylogtreecommitdiffstats
path: root/uim-debian.install
blob: 3a47afa5cf1eaa17a89a5a1e3e38bd0ae997ef8e (plain)
1
2
3
4
5
6
7
8
9
10
11
post_install() {
  if [[ -f /usr/lib/uim/plugin/libuim-mozc.so ]]; then
	echo -n "Registering mozc on uim..."
	/usr/bin/uim-module-manager --register mozc
	[[ $? != 0 ]] && echo "Failed." || echo "Done."
  fi
}

post_upgrade() {
	post_install $1
}