diff options
| author | Simon Tatham <anakin@pobox.com> | 2007-05-06 09:54:34 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2007-05-06 09:54:34 +0000 |
| commit | 6da884911025f5bfe78ffbf5389725e2b487bb5d (patch) | |
| tree | 89e8efa39cdd944d3b9a9ab066fc58b25a0a5bd8 /wceinf.pl | |
| parent | 61395a5141e590f4fcf0964c4a6a3d2ef55d1ed9 (diff) | |
| download | puzzles-6da884911025f5bfe78ffbf5389725e2b487bb5d.zip puzzles-6da884911025f5bfe78ffbf5389725e2b487bb5d.tar.gz puzzles-6da884911025f5bfe78ffbf5389725e2b487bb5d.tar.bz2 puzzles-6da884911025f5bfe78ffbf5389725e2b487bb5d.tar.xz | |
I still haven't managed to get the WinCE port building via bob, but
I should at least check in what I've got.
[originally from svn r7542]
Diffstat (limited to 'wceinf.pl')
| -rw-r--r-- | wceinf.pl | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/wceinf.pl b/wceinf.pl new file mode 100644 index 0000000..8bfc117 --- /dev/null +++ b/wceinf.pl @@ -0,0 +1,65 @@ +#!/usr/bin/perl + +# Perl script to generate a .INF file for building a Pocket PC .CAB +# archive of Puzzles. This has to be scripted so that it can read +# wingames.lst and automatically adjust to the current available +# set of puzzles. + +# Usage: +# +# $ ./wceinf.pl wingames.lst > puzzles.inf + +$lst = shift @ARGV; +open LST, "<", $lst; +while (<LST>) { + chomp; + split /:/; + push @exes, $_[0]; + $names{$_[0]} = $_[1]; +} +close LST; + +print '[Version]'."\n"; +print 'Signature = "$Windows NT$" ; required as-is'."\n"; +print 'Provider = "Simon Tatham" ; full app name will be "<Provider> <AppName>"'."\n"; +print 'CESignature = "$Windows CE$" ; required as-is'."\n"; +print ''."\n"; +print '[CEStrings]'."\n"; +print 'AppName = "Puzzle Collection" ; full app name will be "<Provider> <AppName>"'."\n"; +print 'InstallDir = %CE8%\%AppName% ; "\Program Files\Games\Puzzle Collection" (default install directory)'."\n"; +print ''."\n"; +print '[CEDevice.x86]'."\n"; +print 'ProcessorType = 686'."\n"; +print ''."\n"; +print '[CEDevice.ARM]'."\n"; +print 'ProcessorType = 2577'."\n"; +print ''."\n"; +print '[SourceDisksNames.x86] ; CPU-dependent files'."\n"; +print '2 = ,"x86 Files",,.'."\n"; +print ''."\n"; +print '[SourceDisksNames.ARMV4] ; CPU-dependent files'."\n"; +print '2 = ,"ARM Files",,.'."\n"; +print ''."\n"; +print '[SourceDisksFiles]'."\n"; +for $exe (@exes) { + print $exe.' = 2'."\n"; +} +print ''."\n"; +print '[DefaultInstall]'."\n"; +print 'CopyFiles = PuzzleFiles'."\n"; +print 'CEShortcuts = Links'."\n"; +print ''."\n"; +print '[DestinationDirs]'."\n"; +print 'PuzzleFiles = 0, %InstallDir%'."\n"; +print 'Links = 0, %CE14%\Puzzles'."\n"; +print ''."\n"; +print ';File copy list.'."\n"; +print '[PuzzleFiles]'."\n"; +for $exe (@exes) { + print $exe."\n"; +} +print ''."\n"; +print '[Links]'."\n"; +for $exe (@exes) { + print '"'.$names{$exe}.'",0,'.$exe."\n"; +} |