os/debian/postinst
changeset 285 cf5213c8a919
child 3170 3740e285e4df
equal deleted inserted replaced
284:6688cf392e61 285:cf5213c8a919
       
     1 #! /bin/sh
       
     2 # postinst script for openttd
       
     3 #
       
     4 # see: dh_installdeb(1)
       
     5 
       
     6 set -e
       
     7 
       
     8 # summary of how this script can be called:
       
     9 #        * <postinst> `configure' <most-recently-configured-version>
       
    10 #        * <old-postinst> `abort-upgrade' <new version>
       
    11 #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
       
    12 #          <new-version>
       
    13 #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
       
    14 #          <failed-install-package> <version> `removing'
       
    15 #          <conflicting-package> <version>
       
    16 # for details, see http://www.debian.org/doc/debian-policy/ or
       
    17 # the debian-policy package
       
    18 #
       
    19 
       
    20 case "$1" in
       
    21     configure)
       
    22 	cat <<EOF
       
    23 Before running the game, you should copy the data files from the
       
    24 original TTD. See README.Debian for more details.
       
    25 EOF
       
    26     ;;
       
    27 
       
    28     abort-upgrade|abort-remove|abort-deconfigure)
       
    29 
       
    30     ;;
       
    31 
       
    32     *)
       
    33         echo "postinst called with unknown argument \`$1'" >&2
       
    34         exit 1
       
    35     ;;
       
    36 esac
       
    37 
       
    38 # dh_installdeb will replace this with shell code automatically
       
    39 # generated by other debhelper scripts.
       
    40 
       
    41 #DEBHELPER#
       
    42 
       
    43 exit 0
       
    44 
       
    45