summaryrefslogtreecommitdiff
path: root/cpan/CPAN/MyConfig.pm
blob: f5dd10212ad743358fa7b5c3f1937fd8e7c47de4 (plain)
  1. $CPAN::Config = {
  2. 'auto_commit' => q[0],
  3. 'build_cache' => q[10],
  4. 'build_dir' => "$ENV{HOME}/.cpan/build/",
  5. 'cache_metadata' => q[1],
  6. 'commandnumber_in_prompt' => q[1],
  7. 'cpan_home' => "$ENV{HOME}/.cpan/",
  8. 'ftp' => q[ftp],
  9. 'ftp_passive' => q[1],
  10. 'ftp_proxy' => q[],
  11. 'getcwd' => q[cwd],
  12. 'gzip' => q[gzip],
  13. 'histfile' => "$ENV{HOME}/.cpan/histfile/",
  14. 'histsize' => q[100],
  15. 'http_proxy' => q[],
  16. 'inactivity_timeout' => q[0],
  17. 'index_expire' => q[1],
  18. 'inhibit_startup_message' => q[0],
  19. 'keep_source_where' => "$ENV{HOME}/.cpan/sources/",
  20. 'make' => q[make],
  21. 'make_arg' => q[],
  22. 'make_install_arg' => q[],
  23. 'make_install_make_command' => q[make],
  24. 'makepl_arg' => "PREFIX=$ENV{HOME} LIB=$ENV{HOME}/lib/perl5",
  25. 'mbuild_arg' => q[],
  26. 'mbuild_install_arg' => q[],
  27. 'mbuild_install_build_command' => q[./Build],
  28. 'mbuildpl_arg' => "-install_path lib=$ENV{HOME}/lib/perl5",
  29. 'no_proxy' => q[],
  30. 'pager' => q[less],
  31. 'prerequisites_policy' => q[follow],
  32. 'scan_cache' => q[atstart],
  33. 'shell' => q[sh],
  34. 'show_upload_date' => q[0],
  35. 'tar' => q[tar],
  36. 'term_is_latin' => q[1],
  37. 'term_ornaments' => q[1],
  38. 'unzip' => q[unzip],
  39. 'urllist' => [],
  40. 'use_sqlite' => q[0],
  41. 'wget' => q[wget],
  42. };
  43. 1;
  44. __END__