pkg://atomix_1.1.2-1_i386.deb:45152/postinst
info downloads
#!/bin/sh
if [ "$1" = "configure" ]; then
SCORE_DIR='/var/games'
SCORE_FILE='atomix.scores'
if [ ! -d $SCORE_DIR ]; then
mkdir $SCORE_DIR
fi
if [ -e $SCORE_DIR/$SCORE_FILE ]; then
continue
fi
touch $SCORE_DIR/$SCORE_FILE
chown root:games $SCORE_DIR/$SCORE_FILE
chmod 664 $SCORE_DIR/$SCORE_FILE
fi
# Automatically added by dh_installmenu
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi
# End automatically added section