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
|
use 5.006;
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Cache::FastMmap',
'VERSION_FROM' => 'lib/Cache/FastMmap.pm',
'ABSTRACT_FROM' => 'lib/Cache/FastMmap.pm',
'AUTHOR' => 'Rob Mueller <cpan@robm.fastmail.fm>',
'LICENSE' => 'perl',
'PREREQ_PM' => {
'Storable' => 0,
'Test::Deep' => 0,
},
'LIBS' => [''],
'INC' => '-I.',
'OBJECT' => 'FastMmap.o mmap_cache.o ' . ($^O eq 'MSWin32' ? 'win32.o' : 'unix.o'),
'META_MERGE' => {
'resources' => {
'bugtracker' => 'https://github.com/robmueller/cache-fastmmap/issues',
'repository' => 'https://github.com/robmueller/cache-fastmmap',
},
},
# 'OPTIMIZE' => '-g -DDEBUG -ansi -pedantic',
);
|