-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
31 lines (28 loc) · 883 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'EBook::FB2',
AUTHOR => q{Oleksandr Tymoshenko <[email protected]>},
VERSION_FROM => 'lib/EBook/FB2.pm',
ABSTRACT_FROM => 'lib/EBook/FB2.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'bsd')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Carp' => 0,
'MIME::Base64' => 0,
'Moose' => '0.90',
'Test::More' => 0,
'XML::DOM' => 0,
'XML::DOM::XPath' => 0,
},
META_ADD => {
resources => {
repository => 'http://github.com/gonzoua/EBook-FB2',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'EBook-FB2-*' },
);