Files @ r3826:d244ffe5793f
Branch filter:

Location: cpp/openttd-patchpack/source/os/debian/config

miham
(svn r4845) WebTranslator2 update to 2006-05-12 14:30:27
catalan - 45 fixed by jecaro (45)
czech - 2 fixed by Hadez (2)
danish - 9 fixed by Bjarni (9)
hungarian - 10 fixed by miham (10)
turkish - 2 fixed, 1 changed by jnmbk (3)
#!/bin/sh

# Source debconf library.
. /usr/share/debconf/confmodule

FILES="trg1r.grf trgcr.grf trghr.grf trgir.grf trgtr.grf sample.cat"
DATADIR=/usr/share/games/openttd/data

MISSING="No";
for FILE in $FILES; do
	# Check if all the files needed are here.
	if [ ! -e $DATADIR/$FILE ]; then
		MISSING="Yes";
		break;
  fi;
done;

if [ $MISSING = "Yes" ]; then
	db_input high openttd/datafiles || true
	db_go
fi;