$ perl Makefile.PL PREFIX=~/Testing
Checking if your kit is complete...
Looks good
Writing Makefile for Island::Plotting::Maps
Although the messages don't indicate anything
different, the Makefile will now install scripts
to $PREFIX/bin, manpages below
$PREFIX/man, and libraries below
$PREFIX/lib/site_perl. In this case,
you're selected a subdirectory of your home
directory called Testing as the value of
$PREFIX.
If you were a project librarian, managing code for a team of
developers, you might instead say something like:
$ perl Makefile.PL PREFIX=/path/to/shared/area
which then builds the files into a shared area. Of course,
you'd need write privileges to such a directory, and
the rest of the team would have to add the bin
subdirectory to their PATH, the
man subdirectory to their
MANPATH, and the lib/site_perl
directory to their @INC path, as
you'll see shortly.
 |  |  |
13.5. Controlling the Distribution with Makefile.PL |  | 13.7. Trivial make test |