public
Description: (Perl) Interact with CPAN from the command line
Homepage: http://search.cpan.org/dist/cpan-script
Clone URL: git://github.com/briandfoy/cpan-script.git
briandfoy (author)
Tue Sep 22 14:40:13 -0700 2009
commit  be676fc0b433483fac7548c26e751efbd4656f9d
tree    8e4d54a5a3ac1b591c17d06a4174822f8b30229a
parent  5fd6908c7f60bb620a6e7bc243457831a4c0e01c
cpan-script / Makefile.PL
100644 37 lines (27 sloc) 0.697 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# $Id$
use ExtUtils::MakeMaker;
 
require 5.008;
 
eval "use Test::Manifest 1.21";
 
WriteMakefile(
'NAME' => 'App::Cpan',
'VERSION_FROM' => 'lib/Cpan.pm',
'ABSTRACT' => 'Interact with CPAN from the command line',
'LICENSE' => 'perl',
'AUTHOR' => 'brian d foy <bdfoy@cpan.org>',
 
'EXE_FILES' => [ 'script/cpan' ],
 
'META_MERGE' => {
no_index => {
directory => [qw(t inc examples)],
}
},
 
'PM' => {
'lib/Cpan.pm' => '$(INST_LIBDIR)/Cpan.pm',
},
 
'PREREQ_PM' => {
'Test::More' => '0',
'CPAN' => '1.9301',
},
 
'MAN1PODS' => {},
'MAN3PODS' => {},
 
clean => { FILES => '*.bak App-* cpan-* cover_db' },
);