XML::Mini - The usual procedure will function:

perl Makefile.PL
make
make install


but note that, since XML::Mini is 100% perl, you could probably just:

- Select a location and create an XML directory:

	$ mkdir /path/to/install/XML

- Move the modules to the install location

	$ mv Mini  Mini.pm /path/to/install/XML

- Then specify the location of the library in your code

	#!/usr/bin/perl

	use lib '/path/to/install';
	use XML::Mini;

	# ...


Regards,
Pat Deegan

