X-Git-Url: http://git.maemo.org/git/?p=himkr;a=blobdiff_plain;f=debian%2Fpostinst.ex;fp=debian%2Fpostinst.ex;h=458a5eee2368dc61f77dbabd55a751eb5e433802;hp=0000000000000000000000000000000000000000;hb=c16c46c521a132cea17d858cf96f26c26ff815dd;hpb=3b8233e311abb16b6b7455b3f5044b2875af1d2e diff --git a/debian/postinst.ex b/debian/postinst.ex new file mode 100644 index 0000000..458a5ee --- /dev/null +++ b/debian/postinst.ex @@ -0,0 +1,41 @@ +#!/bin/sh +# postinst script for hildon-input-method-plugins-korean +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + configure) + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + +