This file is indexed.

postinst is in late 0.1.0-12.

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
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh -e

#
#  Score file for the game.
#
scorefile="/var/games/late.scores"

#
#  The game binary itself.
#
binary="/usr/games/late"



# First install the score file might be missing.
if [ ! -e $scorefile ]
then
	touch $scorefile
fi


# Make sure the score file has the correct permissions
chmod 0664 $scorefile
chown root:games $scorefile


# Now make the binary setgid(games).
chmod 755 $binary
chown root:games $binary
chmod g+s $binary

# Automatically added by dh_installmenu
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
	update-menus
fi
# End automatically added section