public
Description: (Perl) This is what the module does
Homepage: http://search.cpan.org/dist/CPAN-PackageDetails
Clone URL: git://github.com/briandfoy/cpan-packagedetails.git
cpan-packagedetails / Makefile.PL
100644 28 lines (20 sloc) 0.653 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
use ExtUtils::MakeMaker;
 
require 5.008;
 
eval "use Test::Manifest 1.21";
 
WriteMakefile(
'NAME' => 'CPAN::PackageDetails',
'ABSTRACT' => 'Create or read 02packages.details.txt.gz',
'VERSION_FROM' => 'lib/PackageDetails.pm',
'LICENSE' => 'perl',
'AUTHOR' => 'brian d foy <bdfoy@cpan.org>',
 
'PREREQ_PM' => {
'Test::More' => '0',
'Test::Output' => '0.10',
'IO::Compress::Gzip' => '0',
'IO::Uncompress::Gunzip' => '0',
},
 
'PM' => {
'lib/PackageDetails.pm' => '$(INST_LIBDIR)/PackageDetails.pm',
},
 
clean => { FILES => q|CPAN-PackageDetails-* t/test_output| },
 
);