File: Makefile.PL

package info (click to toggle)
libcache-fastmmap-perl 1.60-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 356 kB
  • sloc: ansic: 1,404; perl: 635; makefile: 7
file content (25 lines) | stat: -rw-r--r-- 798 bytes parent folder | download | duplicates (4)
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',
);