Be slightly more forgiving about the nature of SVN_REV; bob will be
[u/mdw/putty] / mkunxarc.sh
CommitLineData
8b4e077f 1#!/bin/sh
2
3# Build a Unix source distribution from the PuTTY CVS area.
4#
5# Pass an argument of the form `2004-02-08' to have the archive
6# tagged as a development snapshot; of the form `0.54' to have it
7# tagged as a release.
8
9case "$1" in
10 ????-??-??)
11 case "$1" in *[!-0-9]*) echo "Malformed snapshot ID '$1'" >&2;exit 1;;esac
12 arcsuffix="-`cat LATEST.VER`-$1"
13 ver="-DSNAPSHOT=$1"
3b62690e 14 docver=
8b4e077f 15 ;;
16 '')
17 arcsuffix=
18 ver=
3b62690e 19 docver=
8b4e077f 20 ;;
21 *)
22 case "$1" in *[!.0-9a-z]*) echo "Malformed release ID '$1'">&2;exit 1;;esac
23 arcsuffix="-$1"
24 ver="-DRELEASE=$1"
3b62690e 25 docver="VERSION=\"PuTTY release $1\""
8b4e077f 26 ;;
27esac
28
29perl mkfiles.pl
3b62690e 30(cd doc && make -s ${docver:+"$docver"})
865b3d6b 31sh mkauto.sh 2>/dev/null
8b4e077f 32
33relver=`cat LATEST.VER`
34arcname="putty$arcsuffix"
35mkdir uxarc
36mkdir uxarc/$arcname
2ce79856 37find . -name uxarc -prune -o \
38 -name CVS -prune -o \
39 -name .svn -prune -o \
40 -name . -o \
8b4e077f 41 -type d -exec mkdir uxarc/$arcname/{} \;
42find . -name uxarc -prune -o \
43 -name CVS -prune -o \
44 -name .cvsignore -prune -o \
4494be0a 45 -name .svn -prune -o \
8b4e077f 46 -name '*.zip' -prune -o \
47 -name '*.tar.gz' -prune -o \
48 -type f -exec ln -s $PWD/{} uxarc/$arcname/{} \;
49if test "x$ver" != "x"; then
50 (cd uxarc/$arcname;
51 md5sum `find . -name '*.[ch]' -print` > manifest;
52 echo "$ver" > version.def)
53fi
a8a420c5 54tar -C uxarc -chzof $arcname.tar.gz $arcname
8b4e077f 55rm -rf uxarc