X-Git-Url: http://git.maemo.org/git/?p=ffqwlibrary;a=blobdiff_plain;f=libffqw-demo-1.0%2Fdebian%2Fpostinst.ex;fp=libffqw-demo-1.0%2Fdebian%2Fpostinst.ex;h=e3bf604a80f2c64d23a57ac15ffbcd6b93c4925a;hp=0000000000000000000000000000000000000000;hb=1273d1fbb03faf468b080ca8f2f78717e6949815;hpb=0cf856837e9dc2e271c8e16390758bf02107f678;ds=sidebyside diff --git a/libffqw-demo-1.0/debian/postinst.ex b/libffqw-demo-1.0/debian/postinst.ex new file mode 100644 index 0000000..e3bf604 --- /dev/null +++ b/libffqw-demo-1.0/debian/postinst.ex @@ -0,0 +1,41 @@ +#!/bin/sh +# postinst script for libffqw-demo +# +# 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 + +