Help for this page

Select Code to Download


  1. or download this
    $ perl -MModule::Build -e 'Module::Build->prompt("are you there","Y")'
    are you there [Y] 
    Y
    
  2. or download this
      $user_install_base = Module::Build->prompt("Where to install?","/usr
    +/local");
      Module::Build->new(
    ...
        install_base => $user_install_base,
        ...
      );
    
  3. or download this
    $ perl Build.PL install_base=/home/david
    
    or
    
    $ Build install install_base=/home/david