-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMakefile.PL
More file actions
52 lines (43 loc) · 1.46 KB
/
Copy pathMakefile.PL
File metadata and controls
52 lines (43 loc) · 1.46 KB
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
42
43
44
45
46
47
48
49
50
51
52
# Copyright (C) 2009-2010, Viacheslav Tykhanovskyi
use 5.008001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $mm = $ExtUtils::MakeMaker::VERSION;
WriteMakefile(
NAME => 'Bootylicious',
VERSION_FROM => 'lib/Bootylicious.pm',
ABSTRACT => 'Blog software',
AUTHOR => 'Viacheslav Tykhanovskyi <vti@cpan.org>',
($mm < 6.3002 ? () : ('LICENSE' => 'artistic_2')),
( $mm < 6.46
? ()
: ( META_MERGE => {
requires => {perl => '5.008001'},
resources => {
license => 'http://dev.perl.org/licenses/',
repository =>
'http://github.com/vti/bootylicious/tree/master'
},
no_index => {directory => [qw/t/]}
},
META_ADD => {
build_requires => {},
configure_requires => {}
},
)
),
EXE_FILES => ['bootylicious'],
PREREQ_PM => {
'Carp' => 0,
'File::Basename' => 0,
'File::stat' => 0,
'FindBin' => 0,
'Mojolicious' => 7.15,
'MojoX::Validator' => 0.0016,
'Time::Local' => 0,
'Time::Piece' => 0,
},
test => {TESTS => 't/*.t t/*/*.t t/*/*/*.t t/*/*/*/*.t'}
);
1;