postinst is in omega-rpg 1:0.90-pa9-15build1.
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 | #!/bin/sh -e
# Copy the default highscore/log files if there are non present.
if [ "$1" = "configure" ]; then
if [ ! -f /var/games/omega-rpg/omega.hi ]; then
cp -a /usr/share/games/omega-rpg/omega.hi /var/games/omega-rpg/omega.hi
chgrp games /var/games/omega-rpg/omega.hi
chmod g+w /var/games/omega-rpg/omega.hi
fi
if [ ! -f /var/games/omega-rpg/omega.log ]; then
cp -a /usr/share/games/omega-rpg/omega.log /var/games/omega-rpg/omega.log
chgrp games /var/games/omega-rpg/omega.log
chmod g+w /var/games/omega-rpg/omega.log
fi
fi
# Automatically added by dh_installmenu
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi
# End automatically added section
|