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 38 39 40 41
|
use strict;
use warnings;
use Config;
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'CDB_File',
'AUTHOR' => 'Todd E Rinaldo <toddr@cpan.org>',
'VERSION_FROM' => 'CDB_File.pm',
'ABSTRACT_FROM' => 'CDB_File.pm',
'PL_FILES' => {},
( $ExtUtils::MakeMaker::VERSION >= 6.3002 ? ( 'LICENSE' => 'perl', ) : () ),
( ( $Config{'d_mmap'} && $Config{'d_mmap'} eq 'define' ) ? ( 'DEFINE' => '-DHASMMAP' ) : () ),
PREREQ_PM => {
'Test::More' => 0, # For testing
'B::COW' => 0, # For testing
'File::Temp' => 0, # For testing
'Devel::Peek' => 0, # For testing
'Test::Warnings' => 0, # For testing
'Test::Fatal' => 0, # For testing
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'CDB_File-*' },
META_MERGE => {
recommends => {},
build_requires => {
'Test::More' => 0, # For testing
'B::COW' => 0, # For testing
'File::Temp' => 0, # For testing
'Devel::Peek' => 0, # For testing
'Test::Warnings' => 0, # For testing
'Test::Fatal' => 0, # For testing
},
resources => {
license => 'http://dev.perl.org/licenses/',
bugtracker => 'https://github.com/toddr/CDB_File/issues',
repository => 'https://github.com/toddr/CDB_File',
},
},
);
|