Updated some recipes
[openembedded.git] / recipes / perl / perl-native / CPAN-Config.pm
1
2 # This is CPAN.pm's systemwide configuration file. This file provides
3 # defaults for users, and the values can be changed in a per-user
4 # configuration file. The user-config file is being looked for as
5 # ~/.cpan/CPAN/MyConfig.pm.
6
7 $CPAN::Config = {
8   'build_cache' => q[10],
9   'build_dir' => q[@SYSROOTBASE@/.cpan/build],
10   'cache_metadata' => q[1],
11   'cpan_home' => q[@SYSROOTBASE@/.cpan],
12   'dontload_hash' => {  },
13   'ftp' => q[/usr/bin/ftp],
14   'ftp_proxy' => q[],
15   'getcwd' => q[cwd],
16   'gpg' => q[/usr/bin/gpg],
17   'gzip' => q[/bin/gzip],
18   'histfile' => q[@SYSROOTBASE@/.cpan/histfile],
19   'histsize' => q[100],
20   'http_proxy' => q[],
21   'inactivity_timeout' => q[0],
22   'index_expire' => q[1],
23   'inhibit_startup_message' => q[0],
24   'keep_source_where' => q[@SYSROOTBASE@/.cpan/sources],
25   'lynx' => q[],
26   'make' => q[/usr/bin/make],
27   'make_arg' => q[],
28   'make_install_arg' => q[],
29   'makepl_arg' => q[],
30   'ncftp' => q[],
31   'ncftpget' => q[],
32   'no_proxy' => q[],
33   'pager' => q[less],
34   'prerequisites_policy' => q[ask],
35   'scan_cache' => q[atstart],
36   'shell' => q[/bin/bash],
37   'tar' => q[/bin/tar],
38   'term_is_latin' => q[1],
39   'unzip' => q[/usr/bin/unzip],
40   'urllist' => [q[ftp://mirrors.kernel.org/pub/CPAN]],
41   'wget' => q[/usr/bin/wget],
42 };
43 1;
44 __END__