Work around MinGW mangling of "host:/path"
[msysgit/historical-msysgit.git] / lib / perl5 / 5.6.1 / CPAN / Nox.pm
blob8b59ca07a1498871f2bb185e8f676b50c7f5ec9e
1 package CPAN::Nox;
2 use strict;
3 use vars qw($VERSION @EXPORT);
5 BEGIN{
6 $CPAN::Suppress_readline=1 unless defined $CPAN::term;
9 use base 'Exporter';
10 use CPAN;
12 $VERSION = "1.00";
13 $CPAN::META->has_inst('MD5','no');
14 $CPAN::META->has_inst('LWP','no');
15 $CPAN::META->has_inst('Compress::Zlib','no');
16 @EXPORT = @CPAN::EXPORT;
18 *AUTOLOAD = \&CPAN::AUTOLOAD;
20 __END__
22 =head1 NAME
24 CPAN::Nox - Wrapper around CPAN.pm without using any XS module
26 =head1 SYNOPSIS
28 Interactive mode:
30 perl -MCPAN::Nox -e shell;
32 =head1 DESCRIPTION
34 This package has the same functionality as CPAN.pm, but tries to
35 prevent the usage of compiled extensions during it's own
36 execution. It's primary purpose is a rescue in case you upgraded perl
37 and broke binary compatibility somehow.
39 =head1 SEE ALSO
41 CPAN(3)
43 =cut