preinst is in libxosd2 2.2.14-2.1.
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 11 12 13 14 15 16 17 | #!/bin/sh
# preinst script for libxosd
set -e
# Fix blunder from 0.3.0-1 - Aagh!
if [ -L /usr/share/doc/libxosd/libxosd-dev ]; then
rm -f /usr/share/doc/libxosd/libxosd-dev
fi
if [ -L /usr/share/doc/libxosd/xmms-osd-plugin ]; then
rm -f /usr/share/doc/libxosd/xmms-osd-plugin
fi
exit 0
|