forked from robmueller/cache-fastmmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
25 lines (23 loc) · 798 Bytes
/
Copy pathMakefile.PL
File metadata and controls
25 lines (23 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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',
);