diff options
author | Timothy Pearson <[email protected]> | 2014-12-27 08:15:49 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-12-27 08:15:49 -0600 |
commit | d13c79dd9536e8c57e117e5503d4c0226b0f066b (patch) | |
tree | 1af3df363921c4bbaf923b1c728b5d092ffea670 /ubuntu/maverick/dependencies/libr/debian/postinst.ex | |
parent | f418587d09b9e5acfaadcfa88a18d0b333cf836b (diff) | |
download | tde-packaging-d13c79dd9536e8c57e117e5503d4c0226b0f066b.tar.gz tde-packaging-d13c79dd9536e8c57e117e5503d4c0226b0f066b.zip |
Initial import of libr packaging files
Diffstat (limited to 'ubuntu/maverick/dependencies/libr/debian/postinst.ex')
-rw-r--r-- | ubuntu/maverick/dependencies/libr/debian/postinst.ex | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/ubuntu/maverick/dependencies/libr/debian/postinst.ex b/ubuntu/maverick/dependencies/libr/debian/postinst.ex new file mode 100644 index 000000000..36389e3fa --- /dev/null +++ b/ubuntu/maverick/dependencies/libr/debian/postinst.ex @@ -0,0 +1,39 @@ +#!/bin/sh +# postinst script for libr +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postinst> `configure' <most-recently-configured-version> +# * <old-postinst> `abort-upgrade' <new version> +# * <conflictor's-postinst> `abort-remove' `in-favour' <package> +# <new-version> +# * <postinst> `abort-remove' +# * <deconfigured's-postinst> `abort-deconfigure' `in-favour' +# <failed-install-package> <version> `removing' +# <conflicting-package> <version> +# 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 |