#! /bin/sh #---------------------------------------------------------------- # Simple `.prerm' script for zope-* packages. # First coded by Luca - De Whiskey's - De Vitis #---------------------------------------------------------------- set -e # summary of how this script can be called: # * `remove' # * `upgrade' # * `failed-upgrade' # * `remove' `in-favour' # * `deconfigure' `in-favour' # `removing' # # for details, see /usr/share/doc/packaging-manual/ # I simply replaced the PACKAGE variable with the subscript dpkg --listfiles $(basename $0 .prerm) | awk '$0~/\.py$/ {print $0"c\n" $0"o"}' | xargs rm -f >&2 case "$1" in remove|upgrade|deconfigure) ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 0 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0