Perl-Dist-WiX
view release on metacpan or search on metacpan
share-5123/default/lib/CPAN/Config.pm.tt view on Meta::CPAN
$CPAN::Config = {
'cpan_home' => File::Spec->catdir( File::Spec->tmpdir, 'cpan' ),
'make' => q[], # should autodetect from path
'urllist' => [ q[http://cpan.strawberryperl.com/] ],
'prerequisites_policy' => q[follow],
'make_install_arg' => q[UNINST=1],
'mbuild_install_arg' => q[--uninst 1],
# wish CPAN.pm would leave these disabled, but it doesn't yet
'ftp' => q[ ],
'gpg' => q[ ],
'gzip' => q[ ],
'lynx' => q[ ],
'ncftp' => q[ ],
'ncftpget' => q[ ],
'tar' => q[ ],
'unzip' => q[ ],
'wget' => q[ ],
'load_module_verbosity' => 'none',
};
1;
share/default/perl/lib/CPANPLUS/Config.pm.tt view on Meta::CPAN
A boolean indicating whether or not to show start up tips in the
interactive shell. Defaults to 'true'.
=cut
$Conf->{'conf'}->{'show_startup_tip'} = 1;
=item signature
A boolean indicating whether or not check signatures if packages are
signed. Defaults to 'true' if you have C<gpg> or C<Crypt::OpenPGP>
installed, 'false' otherwise.
=cut
$Conf->{'conf'}->{'signature'} = do {
check_install( module => 'Module::Signature', version => '0.06' )
and ( can_run('gpg') ||
check_install(module => 'Crypt::OpenPGP')
);
} ? 1 : 0;
=item skiptest
A boolean indicating whether or not to skip tests when installing modules.
Defaults to 'false'.
=cut
( run in 0.906 second using v1.01-cache-2.11-cpan-df04353d9ac )