NAME
	INSTALL - How to install Algorithm::Munkres

SYNOPSIS
	perl Makefile.PL
	make
	make test
    make install
	make clean	

DESCRIPTION

   Prerequisites
	NONE

   Installing
	Method 1:
	--------
	The usual way to install the package is to run the following commands:

	perl Makefile.PL
     	make
     	make test
     	make install
		make clean

	Method 2
	--------
	If you are not a superuser or want to install the module 
	locally then following installation procedure should be used

	perl Makefile.PL LIB=/home/anagha/lib
     	make
     	make test
     	make install
		make clean

	In this case the module will be installed in /home/anagha/lib 
	(provided you have read-write permissions to this directory) and 
	this path should be appended to PERL5LIB environment variable.

	Method 3
	--------
	Executing the following commands
	perl Makefile.PL PREFIX=/home/anagha/Munkres
     	make
     	make test
     	make install
		make clean

        will install the module in /home/anagha/Munkres/lib/perl5/site_perl/5.8.5 
		(provided you have read-write permissions to /home/anagha/Munkres directory 
		and you have Perl v5.8.5 or else the last directory in the path will be your 
		systems perl version). This path should be appended to PERL5LIB environment 
		variable.

   System Requirements
        This package has been written in Perl(v5.8.5),
        which is freely available from www.perl.org. 

AUTHORS
	Anagha Kulkarni, University of Minnesota Duluth
	kulka020 <at> d.umn.edu
	
	Ted Pedersen, University of Minnesota Duluth
	tpederse <at> d.umn.edu

SEE ALSO
    README

COPYRIGHT AND LICENSE
    Copyright (C) 2005-2006 Anagha Kulkarni and Ted Pedersen

    Permission is granted to copy, distribute and/or modify this document
    under the terms of the GNU Free Documentation License, Version 1.2 or
    any later version published by the Free Software Foundation; with no
    Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.

    Note: a copy of the GNU Free Documentation License is available on the
    web at <http://www.gnu.org/copyleft/fdl.html> and is included in this
    distribution as FDL.txt.
