-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
33 lines (32 loc) · 1.01 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Markdown::ODF',
AUTHOR => q{Andy Beverley <[email protected]>},
VERSION_FROM => 'lib/Markdown/ODF.pm',
ABSTRACT_FROM => 'lib/Markdown/ODF.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'MIT')
: ()),
BUILD_REQUIRES => {
'Test::More' => 0,
'File::Temp' => 0,
},
PREREQ_PM => {
'Carp' => 0,
'Markdown::Parser' => 0,
'Markdown::Parser::Document' => 0,
'Moo' => 0,
'ODF::lpOD' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Markdown-ODF*' },
META_MERGE => {
resources => {
repository => 'https://github.com/Amtivo-Group/Markdown-ODF',
bugtracker => 'https://github.com/Amtivo-Group/Markdown-ODF/issues',
homepage => 'https://github.com/Amtivo-Group/Markdown-ODF/',
},
},
);