File: postinst

package info (click to toggle)
cxhextris 1.0-13
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 184 kB
  • ctags: 282
  • sloc: ansic: 1,271; makefile: 267; sh: 17
file content (15 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e

SCOREFILE=/var/lib/games/xhextris-scores

if [ ! -e "$SCOREFILE" ]; then
	touch "$SCOREFILE"
	chown root.games "$SCOREFILE"
	chmod 664 "$SCOREFILE"
fi

#DEBHELPER#

if [ -f /usr/X11R6/bin/mkfontdir ]; then
	(cd /usr/X11R6/lib/X11/fonts/misc; /usr/X11R6/bin/mkfontdir)
fi