X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/56d349220fcb31e4fd8f43278c2ef169d1eb2ece..a9fdf82418221608fca0259a586a7a6c13d133c8:/utils/tex2rtf/distrib/zipsrc.sh diff --git a/utils/tex2rtf/distrib/zipsrc.sh b/utils/tex2rtf/distrib/zipsrc.sh index 742421734a..df7bdbb401 100644 --- a/utils/tex2rtf/distrib/zipsrc.sh +++ b/utils/tex2rtf/distrib/zipsrc.sh @@ -1,27 +1,29 @@ #!/bin/sh -# Zip up StoryLines source - -expandlines() -{ - toexpand=$1 - outputfile=$2 - - rm -f $outputfile - touch $outputfile - for line in `cat $toexpand` ; do - if [ $line != "" ]; then - ls $line >> $outputfile - fi - done -} - -CAFEDIR=$CAFE -STDIR=$CAFE/storylines -COMMONDIR=$CAFE/common - -cd $CAFE -expandlines $STDIR/distrib/src.rsp temp.txt -zip -@ $CAFEDIR/deliver/storylines_src.zip < temp.txt -expandlines $CAFEDIR/distrib/src.rsp temp.txt -zip -u -@ $CAFEDIR/deliver/storylines_src.zip < temp.txt -rm temp.txt +# Zip up Tex2RTF source + +VERSION=-$1 +if [ "$VERSION" = "-" ] ; then + VERSION="" +fi + +TEX2RTFDIR=`pwd`/.. + +rm -f $TEX2RTFDIR/deliver/tex2rtf$VERSION-source.zip +rm -f $TEX2RTFDIR/deliver/tex2rtf$VERSION-source.tar.gz + +mkdir $TEX2RTFDIR/tex2rtf$VERSION-source + +cd $TEX2RTFDIR +tar -c `cat $TEX2RTFDIR/distrib/src.rsp` | (cd tex2rtf$VERSION-source ; tar -x) + +# Make a zip archive +zip -9 -r $TEX2RTFDIR/deliver/tex2rtf$VERSION-source.zip tex2rtf$VERSION-source + +# Now make a tar archive +tar cf $TEX2RTFDIR/deliver/tex2rtf$VERSION-source.tar tex2rtf$VERSION-source +gzip -9 $TEX2RTFDIR/deliver/tex2rtf$VERSION-source.tar +tar cf $TEX2RTFDIR/deliver/tex2rtf$VERSION-source.tar tex2rtf$VERSION-source +bzip2 -9 $TEX2RTFDIR/deliver/tex2rtf$VERSION-source.tar + + +rm -rf $TEX2RTFDIR/tex2rtf$VERSION-source