briandfoy / cpan-script

(Perl) Interact with CPAN from the command line

This URL has Read+Write access

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' },
);