deflate.lisp
------------
	Gilbert Baumann <unk6@rz.uni-karlsruhe.de>
	DEFLATE Compressed Data Format, RFC 1951
taken from Closure CVS

Package DEFLATE currently exports only one function:
	rfc1951-uncompress-octets octets &key start => inflated-octets
If you know how to use the rest of that file, please tell me and update
the DEFPACKAGE form!


zip.lisp
--------
	David Lichteblau <david@lichteblau.com>
	Simple ZIP-File reader
	http://www.lichteblau.com/src.html

Package ZIP exports these symbols:

	open-zipfile pathname => zipfile
	close-zipfile zipfile
	with-zipfile (var pathname) &body body => result of body

	zipfile-entries zipfile => hashtable
	get-zipfile-entry name zipfile => zipfile-entry
	do-zipfile-entries (name-var entry-var zipfile) &body body => nil

	zipfile-entry-name zipfile-entry => string
	zipfile-entry-contents zipfile-entry => uncompressed-octets

	unzip pathname target-directory &key if-exists verbose => nil

Installation
------------

With ASDF-INSTALL:
	(asdf-install:install :zip)

Without ASDF-INSTALL:
	$ ln -s `pwd`/zip.asd /your/system/directory
	* (asdf:operate 'asdf:load-op :zip)
