Newer
Older
nohtml / mknohtml
#!/bin/sh
# Build a release of nohtml
# $Id: mknohtml,v 1.2 2012/06/09 17:38:32 tundra Exp $

COLOR=
#COLOR=--color
PROGFILE="nohtml.py"
SUPPFILES="Makefile nohtml.1 nohtml-license.txt"
DOCFILES="nohtml.html nohtml.ps nohtml.pdf nohtml.py.ps  READ-1ST.txt WHATSNEW.txt nohtml.txt"

# Check Command Line Args

DIR="nohtml-"$1

if [ $# -ne 1 ]
    then
	echo "usage: mknohtml version-number"
	exit
fi

# Create Working Directory 

mkdir $DIR

# Extract Files From RCS

co -r$1 $PROGFILE
chmod 755 $PROGFILE
co $SUPPFILES
co $DOCFILES

# Pretty Print The Source Code

enscript -Epython -fCourier8 -i2 -L77 -C --mark-wrapped-lines=arrow $COLOR -pnohtml.py.ps nohtml.py

# Build Documentation

rman -fHTML -l nohtml nohtml.1 > nohtml.html
groff -man -Tps nohtml.1 >nohtml.ps
gs -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=nohtml.pdf nohtml.ps
groff -man -Tascii nohtml.1 | col -xb >nohtml.txt
chmod 644 $DOCFILES *txt
gzip *.1

# Build And Save The Release

mv $PROGFILE $SUPPFILES $DOCFILES $DIR
mv *.gz $DIR
cvs log $PROGFILE >$DIR/CHANGELOG.txt
flip -vm $DIR/*txt
tar -czvf $DIR.tar.gz $DIR
mv $DIR.tar.gz Releases

# Remove Working Directory
rm -rf $DIR