Skip to content
This repository was archived by the owner on Jul 18, 2018. It is now read-only.

Commit 29f9116

Browse files
author
brian d foy
committed
* I think I've completely transferred everything into the App::Cpan
module correctly, so that probably means that there are some bugs left.
1 parent 0287a99 commit 29f9116

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

examples/MyCPANConfig.pm

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
2+
print "I'm being loaded!\n";
3+
4+
$CPAN::Config = {
5+
'cpan_home' => '/Users/brian/Desktop/cpanhome',
6+
'makepl_arg' => '',
7+
'histfile' => '/Users/brian/Desktop/cpanhome/histfile',
8+
'unzip' => '/usr/bin/unzip',
9+
'show_upload_date' => '1',
10+
'dontload_hash' => {},
11+
'mbuild_install_build_command' => './Build',
12+
'lynx' => '',
13+
'curl' => '/usr/bin/curl',
14+
'ncftp' => '',
15+
'urllist' => [
16+
'file:///MINICPAN',
17+
'ftp://cpan.teleglobe.net/pub/CPAN'
18+
],
19+
'gzip' => '/usr/bin/gzip',
20+
'ncftpget' => '',
21+
'keep_source_where' => '/Users/brian/Desktop/cpanhome/sources',
22+
'prefer_installer' => 'EUMM',
23+
'getcwd' => 'cwd',
24+
'make_install_make_command' => '/usr/bin/make',
25+
'no_proxy' => '',
26+
'build_cache' => '10',
27+
'make_arg' => '',
28+
'wget' => '',
29+
'auto_commit' => '1',
30+
'ftp_proxy' => '',
31+
'ftp_passive' => '1',
32+
'tar' => '/usr/bin/tar',
33+
'inactivity_timeout' => '0',
34+
'use_sqlite' => '0',
35+
'scan_cache' => 'atstart',
36+
'mbuildpl_arg' => '',
37+
'cache_metadata' => '1',
38+
'ftp' => '/usr/bin/ftp',
39+
'term_ornaments' => '1',
40+
'shell' => '/bin/bash',
41+
'prerequisites_policy' => 'follow',
42+
'make' => '/usr/bin/make',
43+
'gpg' => '',
44+
'mbuild_arg' => '',
45+
'inhibit_startup_message' => '0',
46+
'build_dir' => '/Users/brian/Desktop/cpanhome/build',
47+
'check_sigs' => '0',
48+
'commandnumber_in_prompt' => '1',
49+
'index_expire' => '1',
50+
'mbuild_install_arg' => '',
51+
'bzip2' => '/usr/bin/bzip2',
52+
'test_report' => '0',
53+
'pager' => '/usr/bin/less',
54+
'term_is_latin' => '1',
55+
'make_install_arg' => '',
56+
'colorize_output' => '0',
57+
'histsize' => '100',
58+
'http_proxy' => ''
59+
};
60+
61+
1;
62+
__END__

0 commit comments

Comments
 (0)