NAME

R::Setup::Download - Perl extension for R package download for offline installation

SYNOPSIS

# source download
my $d = R::Setup::Download->new;
$d->download_binary (source=>'R-3.1.2.tar.gz');

# packages download
my @list = qw/rshape2 ggplot2/;

my $d = R::Setup::Download->new ( packages=>\@list, [ usrbase=>$cranurl, ] verbose=>1 );
$d->prepare ( [ refresh=>1 ] );

my $tarlistref = $d->dumplist;
$d->download if defined $download;

DESCRIPTION

R::Setup::Download resolves all package list with tar files and download from CRAN repo for further offline installation in an Internet denied cluster running Hadoop.

SEE ALSO

R::Setup R::Setup::Resolve R::Setup::Install R::Setup::Bootstrap

AUTHOR

Snehasis Sinha, <lt>snehasis@cpan.org<gt>

COPYRIGHT AND LICENSE

Copyright (C) 2015 by Snehasis Sinha

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.1 or, at your option, any later version of Perl 5 you may have available.