1ExtUtils::InstallPaths tries to make install path resolution as easy as
2possible.
3
4When you want to install a module, it needs to figure out where to install
5things. The nutshell version of how this works is that default installation
6locations are determined from ExtUtils::Config, and they may be individually
7overridden by using the install_path attribute. An install_base attribute lets
8you specify an alternative installation root like /home/foo and prefix does
9something similar in a rather different (and more complicated) way. destdir lets
10you specify a temporary installation directory like /tmp/install in case you
11want to create bundled-up installable packages.
12