-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
41 lines (39 loc) · 984 Bytes
/
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 ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'SVG::Timeline::Genealogy',
VERSION_FROM => 'lib/SVG/Timeline/Genealogy.pm',
LICENSE => 'perl_5',
MIN_PERL_VERSION => '5.10.0',
BUILD_REQUIRES => {
'Test::More' => 0,
'ExtUtils::MakeMaker' => 0,
SVG => 0,
Moose => 0,
'List::Util' => 0,
Carp => 0,
'Genealogy::Ahnentafel' => 0,
'SVG::Timeline' => 0,
},
PREREQ_PM => {
SVG => 0,
Moose => 0,
'List::Util' => 0,
'Genealogy::Ahnentafel' => 0,
Carp => 0,
'SVG::Timeline' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git://github.com/davorg-cpan/svg-timeline-genealogy.git',
web => 'https://github.com/davorg-cpan/svg-timeline-genealogy',
},
bugtracker => {
web => 'https://github.com/davorg-cpan/svg-timeline-genealogy/issues',
}
},
},
EXE_FILES => [ 'bin/treeline' ],
);