diff options
author | bjarni <bjarni@openttd.org> | 2004-09-18 16:29:12 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2004-09-18 16:29:12 +0000 |
commit | d1a88cbbca61f017ebb21e3963240e1b8b76dc87 (patch) | |
tree | 4b7777894eeae4ab6637aee5ef2b00a4df800826 /os/debian/postrm | |
parent | f5a50c0007f3940a289f3061e2945631912107e9 (diff) | |
download | openttd-d1a88cbbca61f017ebb21e3963240e1b8b76dc87.tar.xz |
(svn r291) Minor fix to english.txt
added debian support (blathijs)
improved make install (blathijs)
Diffstat (limited to 'os/debian/postrm')
-rw-r--r-- | os/debian/postrm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/os/debian/postrm b/os/debian/postrm new file mode 100644 index 000000000..7a597deef --- /dev/null +++ b/os/debian/postrm @@ -0,0 +1,45 @@ +#! /bin/sh +# postrm script for openttd +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postrm> `remove' +# * <postrm> `purge' +# * <old-postrm> `upgrade' <new-version> +# * <new-postrm> `failed-upgrade' <old-version> +# * <new-postrm> `abort-install' +# * <new-postrm> `abort-install' <old-version> +# * <new-postrm> `abort-upgrade' <old-version> +# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge|remove) + cat <<EOF + Don't forget to remove any existing data files from + /usr/share/games/openttd! +EOF + ;; + + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + + ;; + + *) + echo "postrm 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 |