-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
36 lines (30 loc) · 958 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
use 5.010001;
use strict;
use warnings;
use ExtUtils::MakeMaker 6.64;
WriteMakefile(
NAME => 'PPI::Transform::Doxygen',
VERSION_FROM => 'lib/PPI/Transform/Doxygen.pm',
ABSTRACT => 'Transform POD documentation to doxygen compatible format',
AUTHOR => 'Thomas Kratz <[email protected]>',
LICENSE => 'artistic_2',
MIN_PERL_VERSION => 5.010001,
EXE_FILES => ['bin/ppi_transform_doxygen'],
PREREQ_PM => {
'PPI' => '1.220',
'Pod::POM' => '2.01',
},
TEST_REQUIRES => {
},
BUILD_REQUIRES => {
},
META_MERGE => {
resources => {
license => 'http://www.opensource.org/licenses/artistic-license-2.0',
repository => 'https://github.com/tomk3003/ppi-transform-doxygen',
bugtracker => 'https://github.com/tomk3003/ppi-transform-doxygen/issues'
},
no_index => {directory => ['t']}
},
test => {TESTS => 't/*.t'}
);