# This code is written and copyrighted by Clif Flynt, 2005
# It is licenced for public use with these terms:
#
#  This licence agreement must remain intact with the code.
#
#  You may use this code freely for commercial and  non-commercial purposes.
#
#  You may examine and modify the code to your heart's content.
#
#  You may not claim to have authored the code (aside from modifications
#  you may have made.)
#
#  You may not distribute the code without this license agreement
#
#  Maintenance, extension, modification, etc can be performed by:
#
#   Noumena Corporation
#   9300 Fleming Rd.
#   Dexter, MI  48130
#
#   Contact: clif@noucorp.com
##############################################################################

A lightweight Tcl extension for the bzip package.  Supports reading and
writing compressed files, and compressing and decompressing in-memory 
values.

Requires the BZ2 distribution and tclsh.
Get bz2 from:  http://www.bzip.org/
Get tclsh from: http://tcl.sourceforge.net/


  Directory structure should be
    .../
    .../tcl8.x.y.z
    .../tk8.x.y.z
    .../bzip2-1.x.y
    .../bzTcl

cd tcl8*/unix
  ./configure 
  make
cd bzip2-1.x.y
  make
cd bzTcl
  # edit Makefile to point to Tcl libraries on your system.
  make

  tclsh test1.tcl 
  tclsh test2.tcl
  
  If they don't crash or report errors, all is well.
