preinst is in python-gammu 1.33.0-3.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | #!/bin/sh
# remove this file after releasing Squeeze
set -e
if [ "$1" = upgrade ] && dpkg --compare-versions "$2" lt 1.25.93-2
then
pycentral pkgremove python-gammu
# if pycentral doesn't remove all files, use below lines
rm -rf /usr/lib/python2.4/site-packages/gammu/
rm -rf /usr/lib/python2.5/site-packages/gammu/
fi
|