The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

INSTALLATION

system-wide installation

    perl Build.PL
    ./Build
    ./Build test
    sudo ./Build install

installation in a private directory

    perl Build.PL --install_base ~/modules_prefix
    ./Build
    ./Build test
    ./Build install

Do not forget to add $HOME/modules_prefix/lib/perl5 to your @INC, see "How do I add a directory to my include path (@INC) at runtime?" in perlfaq8.