chiark / gitweb /
Fix a typo in the Black Box docs examples.
[sgt-puzzles.git] / Buildscr
1 # -*- sh -*-
2 # Build script to build Puzzles.
3
4 module puzzles
5
6 set Version $(!builddate).$(vcsid)
7
8 # Start by substituting the right version number in configure.ac.
9 in puzzles do perl -i~ -pe 's/6.66/$(Version)/' configure.ac
10 in puzzles do rm configure.ac~
11
12 # And put it into the documentation as a versionid.
13 # use perl to avoid inconsistent behaviour of echo '\v'
14 in puzzles do perl -e 'print "\n\\versionid Simon Tatham'\''s Portable Puzzle Collection, version $$ARGV[0]\n"' $(Version) >> puzzles.but
15 in puzzles do perl -e 'print "\n\\versionid Simon Tatham'\''s Portable Puzzle Collection, version $$ARGV[0]\n"' $(Version) >> devel.but
16
17 # Write out a version.h that contains the real version number.
18 in puzzles do echo '/* Generated by automated build script */' > version.h
19 in puzzles do echo '$#define VER "Version $(Version)"' >> version.h
20
21 # And do the same substitution in the OS X metadata. (This is a bit
22 # icky in principle because it presumes that my version numbers don't
23 # need XML escaping, but frankly, if they ever do then I should fix
24 # them!)
25 in puzzles do perl -i -pe 's/Unidentified build/$(Version)/' osx-info.plist
26
27 # First build some local binaries, to run the icon build.
28 in puzzles do perl mkfiles.pl -U
29 in puzzles do make
30
31 # Now build the screenshots and icons.
32 in puzzles/icons do xvfb-run -s "-screen 0 1024x768x24" make web winicons gtkicons
33
34 # Destroy the local binaries and autoconf detritus, mostly to avoid
35 # wasting network bandwidth by transferring them to the delegate
36 # servers.
37 in puzzles do make distclean
38
39 # Re-run mkfiles.pl now that it knows the icons are there.
40 in puzzles do perl mkfiles.pl
41
42 # Rebuild the configure script.
43 in puzzles do ./mkauto.sh
44
45 # Build the OS X .dmg archive.
46 delegate osx
47   in puzzles do make -f Makefile.osx clean
48   in puzzles do make -f Makefile.osx release VER=-DVER=$(Version)
49   return puzzles/Puzzles.dmg
50 enddelegate
51
52 # Build the Windows binaries and installer, and the CHM file.
53 in puzzles do make -f Makefile.doc clean
54 in puzzles do make -f Makefile.doc chm
55 in puzzles do make -f Makefile.doc # build help file for installer
56 in puzzles do perl winiss.pl $(Version) gamedesc.txt > puzzles.iss
57 delegate windows
58   # Ignore the poorly controlled return value from HHC, and instead
59   # just test that the output file was generated.
60   in puzzles do/win hhc puzzles.hhp & type puzzles.chm >nul
61   # FIXME: Cygwin alternative?
62   in puzzles do/win vcvars32 && nmake -f Makefile.vc clean
63   in puzzles do/win vcvars32 && nmake -f Makefile.vc VER=-DVER=$(Version)
64   # Code-sign the binaries, if the local bob config provides a script
65   # to do so. We assume here that the script accepts an -i option to
66   # provide a 'more info' URL, and an optional -n option to provide a
67   # program name, and that it can take multiple .exe filename
68   # arguments and sign them all in place.
69   ifneq "$(winsigncode)" "" in puzzles do $(winsigncode) -i http://www.chiark.greenend.org.uk/~sgtatham/puzzles/ *.exe
70   # Build installer.
71   in puzzles do/win iscc puzzles.iss
72   ifneq "$(winsigncode)" "" in puzzles do $(winsigncode) -i http://www.chiark.greenend.org.uk/~sgtatham/puzzles/ -n "Simon Tatham's Portable Puzzle Collection Installer" Output/setup.exe
73   return puzzles/puzzles.chm
74   return puzzles/*.exe
75   return puzzles/Output/setup.exe
76 enddelegate
77 in puzzles do chmod +x *.exe
78
79 # Build the Pocket PC binaries and CAB.
80 #
81 # NOTE: This part of the build script requires the Windows delegate
82 # server to have the cabwiz program on its PATH. This will
83 # typically be at
84 #
85 #   C:\Program Files\Windows CE Tools\WCE420\POCKET PC 2003\Tools
86 #
87 # but it might not be if you've installed it somewhere else, or
88 # have a different version.
89 #
90 # NOTE ALSO: This part of the build is commented out, for the
91 # moment, because cabwiz does unhelpful things when run from within
92 # a bob delegate process (or, more generally, when run from any
93 # terminal-based remote login to a Windows machine, including
94 # Cygwin opensshd and Windows Telnet). The symptom is that cabwiz
95 # just beeps and sits there. Until I figure out how to build the
96 # .cab from an automated process (and I'm willing to consider silly
97 # approaches such as a third-party CAB generator), I don't think I
98 # can sensibly enable this build.
99
100 #in puzzles do perl wceinf.pl gamedesc.txt > puzzles.inf
101 #delegate windows
102 #  in puzzles do cmd /c 'wcearmv4 & nmake -f Makefile.wce clean'
103 #  in puzzles do cmd /c 'wcearmv4 & nmake -f Makefile.wce VER=-DVER=$(Version)'
104 #  # Nasty piece of sh here which saves the return code from cabwiz,
105 #  # outputs its errors and/or warnings, and then propagates the
106 #  # return code back to bob. If only cabwiz could output to
107 #  # standard error LIKE EVERY OTHER COMMAND-LINE UTILITY IN THE
108 #  # WORLD, I wouldn't have to do this.
109 #  in puzzles do cat puzzles.inf
110 #  in puzzles do cmd /c 'wcearmv4 & bash -c cabwiz puzzles.inf /err cabwiz.err /cpu ARMV4'; a=$$?; cat cabwiz.err; exit $$a
111 #  return puzzles/puzzles.armv4.cab
112 #enddelegate
113
114 # Build the help file and the HTML docs.
115 in puzzles do make -f Makefile.doc clean # remove CHM-target HTML
116 in puzzles do make -f Makefile.doc # and rebuild help file...
117 in puzzles do mkdir doc
118 in puzzles do mkdir devel
119 in puzzles/doc do halibut --html -Chtml-contents-filename:index.html -Chtml-index-filename:indexpage.html -Chtml-template-filename:%k.html -Chtml-template-fragment:%k ../puzzles.but
120 in puzzles/devel do halibut --html -Chtml-contents-filename:index.html -Chtml-index-filename:indexpage.html -Chtml-template-filename:%k.html -Chtml-template-fragment:%k ../devel.but
121
122 # Move the deliver-worthy Windows binaries (those specified in
123 # gamedesc.txt, which is generated by mkfiles.pl and helpfully
124 # excludes the command-line auxiliary utilities such as solosolver,
125 # and nullgame.exe) into a subdirectory for easy access.
126 in puzzles do mkdir winbin
127 in puzzles do mv `cut -f2 -d: gamedesc.txt` winbin
128
129 # Make a zip file of the Windows binaries and help files.
130 in puzzles do zip -j puzzles.zip winbin/*.exe puzzles.chm puzzles.hlp puzzles.cnt
131
132 # Create the source archive. (That writes the archive into the
133 # _parent_ directory, so be careful when we deliver it.)
134 in puzzles do ./makedist.sh $(Version)
135
136 # Build the autogenerated pieces of the main web page.
137 in puzzles do perl webpage.pl
138
139 ifneq "$(JAVA_UNFINISHED)" "" in puzzles do perl -i~ -pe 'print "!srcdir unfinished/\n" if /!srcdir icons/' Recipe
140 ifneq "$(JAVA_UNFINISHED)" "" in puzzles do ln -s unfinished/group.R .
141 ifneq "$(JAVA_UNFINISHED)" "" in puzzles do perl mkfiles.pl
142
143 # Build the Java applets.
144 delegate nestedvm
145   in puzzles do make -f Makefile.nestedvm NESTEDVM="$$NESTEDVM" VER=-DVER=$(Version)
146   return puzzles/*.jar
147 enddelegate
148
149 # Build the Javascript applets. Since my master build machine doesn't
150 # have the right dependencies installed for Emscripten, I do this by a
151 # delegation.
152 in puzzles do mkdir js # so we can tell output .js files from emcc*.js
153 delegate emscripten
154   in puzzles do make -f Makefile.emcc OUTPREFIX=js/ clean
155   in puzzles do make -f Makefile.emcc OUTPREFIX=js/
156   return puzzles/js/*.js
157 enddelegate
158
159 # Set up .htaccess containing a redirect for the archive filename.
160 in puzzles do echo "AddType application/octet-stream .chm" > .htaccess
161 in puzzles do echo "AddType application/octet-stream .hlp" >> .htaccess
162 in puzzles do echo "AddType application/octet-stream .cnt" >> .htaccess
163 in . do set -- puzzles*.tar.gz; echo RedirectMatch temp '(.*/)'puzzles.tar.gz '$$1'"$$1" >> puzzles/.htaccess
164 in puzzles do echo RedirectMatch temp '(.*/)'puzzles-installer.exe '$$1'puzzles-$(Version)-installer.exe >> .htaccess
165
166 # Phew, we're done. Deliver everything!
167 deliver puzzles/icons/*-web.png $@
168 deliver puzzles/winbin/*.exe $@
169 deliver puzzles/.htaccess $@
170 deliver puzzles/doc/*.html doc/$@
171 deliver puzzles/devel/*.html devel/$@
172 deliver puzzles/Puzzles.dmg $@
173 deliver puzzles/puzzles.chm $@
174 deliver puzzles/puzzles.hlp $@
175 deliver puzzles/puzzles.cnt $@
176 deliver puzzles/puzzles.zip $@
177 deliver puzzles/Output/setup.exe puzzles-$(Version)-installer.exe
178 deliver puzzles/*.jar java/$@
179 deliver puzzles/js/*.js js/$@
180 deliver puzzles/html/*.html html/$@
181 deliver puzzles/html/*.pl html/$@
182 deliver puzzles/wwwspans.html $@
183 deliver puzzles/wwwlinks.html $@
184
185 # deliver puzzles/puzzles.armv4.cab $@ # (not built at the moment)
186
187 # This one isn't in the puzzles subdir, because makedist.sh left it
188 # one level up.
189 deliver puzzles*.tar.gz $@