/home/.cpan/build/CDB_File-1.05-0
NameSizeModeActions
blib/-0755rm
t/-0755rm
ACKNOWLEDGE9880644editdlrm
bun-x.pl12510755editdlrm
CDB_File.bs00644editdlrm
CDB_File.c407800644editdlrm
CDB_File.o2620160644editdlrm
CDB_File.pm141270644editdlrm
CDB_File.xs262990644editdlrm
Changelog62110644editdlrm
COPYRIGHT1310644editdlrm
INSTALL6450644editdlrm
Makefile393290644editdlrm
Makefile.PL15380644editdlrm
MANIFEST4280644editdlrm
MANIFEST.SKIP1380644editdlrm
META.json15940644editdlrm
META.yml9370644editdlrm
MYMETA.json14030644editdlrm
MYMETA.yml8270644editdlrm
pm_to_blib00644editdlrm
ppport.h5214110644editdlrm
typemap7070644editdlrm
Edit: /home/.cpan/build/CDB_File-1.05-0/Makefile.PL (1538B)
use strict; use warnings; use Config; use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'CDB_File', 'AUTHOR' => 'Todd E Rinaldo ', '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', }, }, );