XSLTools

packages/ubuntu-hoary/python2.4-xsltools/debian/prerm

371:f2710049be3e
2005-11-01 paulb [project @ 2005-11-01 16:47:22 by paulb] Added affected element information to selector-field annotations.
     1 #! /bin/sh      2 # prerm script for XSLTools     3      4 set -e     5      6 PACKAGE=python2.4-xsltools     7 VERSION=2.4     8 LIB="/usr/lib/python$VERSION"     9 DIRLIST="$LIB/site-packages/XSLForms $LIB/site-packages/XSLTools"    10     11 case "$1" in    12     remove|upgrade|failed-upgrade)    13         for i in $DIRLIST ; do    14             find $i -name '*.py[co]' -exec rm \{\} \;    15         done    16     ;;    17     18     *)    19         echo "prerm called with unknown argument \`$1'" >&2    20         exit 1    21     ;;    22 esac    23     24     25     26 exit 0