-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
41 lines (38 loc) · 1.51 KB
/
Makefile.PL
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 5.006;
use ExtUtils::MakeMaker;
use inc::Module::Install;
readme_from 'lib/Set/SegmentTree.pm', 1, 'md';
readme_from 'lib/Set/SegmentTree.pm';
license 'perl_5';
abstract 'Immutable segment trees with flatbuffers in perl';
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Set::SegmentTree',
VERSION_FROM => 'lib/Set/SegmentTree.pm', # finds $VERSION, requires EU::MM from perl >= 5.5
PREREQ_PM => {
'perl' => '5.013002',
'Test::XT' => '0.04',
'File::Map' => '0.64',
'Carp' => 1.36,
'Cwd' => 3.56,
'Data::UUID' => 1.221,
'ExtUtils::MakeMaker' => 7.0401,
'File::Find' => 1.29,
'File::Map' => 0.64,
'File::Path' => 2.09,
'IO::File' => 1.16,
'List::Util' => 1.46,
'Readonly' => 2.05,
'Test::More' => 1.302067,
'Test::XT' => 0.04,
'Time::HiRes' => 1.9726
},
ABSTRACT_FROM => 'lib/Set/SegmentTree.pm', # retrieve abstract from module
LICENSE => 'perl_5',
AUTHOR => 'David Ihnen <davidihnen@gmail.com>',
#Value must be from legacy list of licenses here
#http://search.cpan.org/perldoc?Module%3A%3ABuild%3A%3AAPI
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Set-SegmentTree*' },
);