2005-10-25 | paulb | raw annotate files changeset graph | [project @ 2005-10-25 17:27:39 by paulb] Moved generic methods from the QtConfigurator example into a new resource class in the PyQt module. Moved the Factory class from the QtConfigurator example into the PyQt module. |
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