NAME

R::Setup::Bootstrap - Perl extension for R bootstraping (from source)

SYNOPSIS

use R::Setup::Bootstrap;

use Getopt::Long;

my %opts;
GetOptions (\%opts, 'build', 'install');

#my $b = R::Setup::Bootstrap->new ( tarball=>'R-3.1.2.tar.gz' );
my $b = R::Setup::Bootstrap->new;

$b->build if defined $opts{build};
$b->install if defined $opts{install};

exit (0);

DESCRIPTION

Documentation for R::Setup::Bootstrap, created by h2xs.

This installs R from tarball on a internet denied cluster running Hadoop.

SEE ALSO

R::Setup R::Setup::Resolve R::Setup::Download R::Setup::Install

AUTHOR

Snehasis Sinha, <snehasis@localdomain>

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.