How to create upstream .tar.gz files for simh 
for simh v3.2-0

Depends on packages wget and unzip

wget http://simh.trailing-edge.com/sources/simhv32-0.zip
wget http://simh.trailing-edge.com/sources/simtools.zip
mkdir simh-3.2.0
cd simh-3.2.0
cp ../simhv32-0.zip .
unzip simhv32-0.zip
rm simhv32-0.zip
mkdir TOOLS
cd TOOLS/
cp ../../simtools.zip .
unzip simtools.zip
rm simtools.zip
cd ..
rm TOOLS/extractors/ckabstape.c # unknown licensing
rm -Rf TOOLS/extractors/backup # original author unknown = unknown licensing
rm -Rf TOOLS/putr # msdos executable, no source avail, license unclear
rm TOOLS/*.exe # no need for msdos executables
rm TOOLS/ods2_readme.txt # docs for a utility not included
rm VAX/ka655.bin # license unclear, prob owned by DEC, no src See bug 180828
rm -Rf Ibm1130 # license only allows "use" not redistribution
# admittedly, "use" is a universal verb that can be nearly any action
# but I'd prefer to remove it until explicit permission to redistribute 
# is granted.
rm NOVA/eclipse* # In "eclipse_tt.c" "Commercial use prohibited"
rm -Rf winpcap
cd ..
tar -czf simh_3.2.0.tar.gz simh-3.2.0/

