diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-12 21:24:43 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-12 21:24:43 +0000 |
| commit | ea5d04bc533aca0ec9499d078208cec71267d610 (patch) | |
| tree | f8ab01d027c356dd8f8a784d4c71bc53b1d67c49 /debian/postinst.ex | |
| parent | 6017c061ebdb1722963b446233b4138d7a0c0947 (diff) | |
add stuff for making a .deb package
Diffstat (limited to 'debian/postinst.ex')
| -rw-r--r-- | debian/postinst.ex | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/debian/postinst.ex b/debian/postinst.ex new file mode 100644 index 00000000..1c35c54e --- /dev/null +++ b/debian/postinst.ex @@ -0,0 +1,41 @@ +#!/bin/sh +# postinst script for openbox +# +# 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 + + |
