Fusepak is a program, that allows you to view contents of PACK (from
Quake) and WAD (from Doom) files. One thing that makes it different
from other such programs, is fact, that it uses FUSE
(http://fuse.sourcefroge.net) to "mount" files under certain directory
(just as you would mount a file over a loopback). This means that
every program can access contents of those archives just by reading
files.

Requirements:
	- Linux 2.4.x or 2.6.x (as of 2.6.14 FUSE is part of the
	  kernel, but you still need user libraries)
	- FUSE (http://fuse.sourceforge.net) 2.5.x

Build:
	If you are using version from CVS, first run:
	./bootstrap

	After that or if you are not using version from CVS (or you
	don't even know what CVS is), run:
	./configure && make

Install:
	make install

Usage:
	pakmount some_file some_dir

	This will make contents of some_file (either PACK or WAD)
	available under some_dir. Please note that some_dir should be empty.

	To unmount previously mounted file, use:
	fusermount -u some_dir
