This file is indexed.

preinst is in oxygen-cursor-theme-extra 0.0.2010-05-10-kde4.4.3-1ubuntu1.

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
18
19
20
21
22
23
24
25
#! /bin/sh

set -e

REMOVED_LIST=""
ICONDIR=/etc/X11/cursors

case "$1" in
    upgrade)
	for theme in $REMOVED_LIST; 
	do
            if update-alternatives --list x-cursor-theme |grep -q $theme; then
	      update-alternatives --remove $ICONDIR/$theme
	      rm -f $ICONDIR/$theme
            fi
	done
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.



exit 0