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
cpan-script / Makefile.PL
100644 28 lines (19 sloc) 0.501 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
# $Id$
use ExtUtils::MakeMaker;
 
require 5.006;
 
eval "use Test::Manifest 1.14";
 
WriteMakefile(
    'NAME' => 'cpan-script',
'VERSION' => '1.54',
'ABSTRACT' => 'Interact with CPAN from the command line',
 
'LICENSE' => 'perl',
'AUTHOR' => 'brian d foy <bdfoy@cpan.org>',
 
'EXE_FILES' => [ 'cpan' ],
 
'PREREQ_PM' => {
'Test::More' => '0',
},
 
'MAN1PODS' => {
'cpan' => '$(INST_MAN1DIR)/cpan.1',
},
 
clean => { FILES => '*.bak cpan-*' },
);