mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
Files

out of the tarball by makedist.sh, causing the downloaded source tree to fail mkfiles.pl. Worse still, the GTK Makefile wasn't included, so people _needed_ to run mkfiles.pl! Both now fixed, I think. [originally from svn r5205]
23 lines
534 B
Bash
Executable File
23 lines
534 B
Bash
Executable File
#!/bin/sh
|
|
|
|
perl mkfiles.pl
|
|
|
|
mkdir tmp.$$
|
|
mkdir tmp.$$/puzzles
|
|
|
|
# Build Windows Help and text versions of the manual for convenience.
|
|
halibut --winhelp=puzzles.hlp --text=puzzles.txt puzzles.but
|
|
|
|
# Build a text version of the HACKING document.
|
|
halibut --text=HACKING HACKING.but
|
|
|
|
for i in *.c *.m *.h *.but *.plist *.icns LICENCE README Recipe \
|
|
mkfiles.pl Makefile Makefile.* \
|
|
HACKING puzzles.txt puzzles.hlp puzzles.cnt; do
|
|
ln -s ../../$i tmp.$$/puzzles
|
|
done
|
|
|
|
tar -C tmp.$$ -chzf - puzzles > ../puzzles.tar.gz
|
|
|
|
rm -rf tmp.$$
|