mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
(svn r4033) - Codechange: [Debian] Update debian packaging files to use debconf for user interaction.
This commit is contained in:
parent
bcf0d9ff06
commit
44aa29a005
@ -1,6 +1,6 @@
|
|||||||
openttd (0.4.5+custom) unstable; urgency=low
|
openttd (0.4.5+custom) unstable; urgency=low
|
||||||
|
|
||||||
* Custom user build.
|
* Remove old terminal messages and make sure that debconf is always called.
|
||||||
|
|
||||||
-- Matthijs Kooijman <m.kooijman@student.utwente.nl> Thu, 9 Mar 2006 00:04:33 +0100
|
-- Matthijs Kooijman <m.kooijman@student.utwente.nl> Thu, 9 Mar 2006 00:04:33 +0100
|
||||||
|
|
||||||
|
21
os/debian/config
Executable file
21
os/debian/config
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
#!/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;
|
6
os/debian/templates
Normal file
6
os/debian/templates
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
Template: openttd/datafiles
|
||||||
|
Type: note
|
||||||
|
Description: You need to install data files.
|
||||||
|
OpenTTD needs the datafiles from the original TTD game to run. You should
|
||||||
|
install these datafiles before you can play the game. See README.Debian for
|
||||||
|
more details on which files need to be copied where.
|
Loading…
Reference in New Issue
Block a user