Help for this page

Select Code to Download


  1. or download this
    PERL_INSTALL=/tmp/perl.`uuidgen`
    ./Configure -Dprefix=/opt/perl
    make -f Makefile install.perl DESTDIR=${PERL_INSTALL}
    # Now to install modules I need /opt/perl
    sudo ln -sf ${PERL_INSTALL}/opt/perl /opt/perl
    
  2. or download this
    for i in `cat modules.list`
    do
      PERL_BIN=/opt/perl/bin/perl
      (cd $i && make -f OURMakefile install) || exit 1
    done
    
  3. or download this
    cp -dpvR ${PERL_INSTALL}/opt/perl ~/devel/root/opt