-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.PL
50 lines (47 loc) · 1.59 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $MM_Version = $ExtUtils::MakeMaker::VERSION;
if ( $MM_Version =~ /_/ ) # dev version
{
$MM_Version = eval $MM_Version;
die $@ if ($@);
}
WriteMakefile(
NAME => 'Search::Query',
AUTHOR => q{Peter Karman <[email protected]>},
VERSION_FROM => 'lib/Search/Query.pm',
ABSTRACT_FROM => 'lib/Search/Query.pm',
( $ExtUtils::MakeMaker::VERSION >= 6.3002
? ( 'LICENSE' => 'perl' )
: () ),
PL_FILES => {},
EXE_FILES => [ q[bin/sqd], ],
PREREQ_PM => {
'Test::More' => 0,
'Data::Dump' => 0,
'Moo' => 0,
'Type::Tiny' => 0,
'namespace::autoclean' => 0.28,
'Data::Transformer' => 0,
'Scalar::Util' => 0,
'Module::Pluggable' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Search-Query-*' },
( $MM_Version >= 6.48 ? ( MIN_PERL_VERSION => '5.8.3' ) : () ),
( $MM_Version >= 6.31 ? ( LICENSE => 'perl' ) : () ),
( $MM_Version <= 6.44 ? ()
: ( META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
homepage => 'https://github.com/karpet/search-query-perl',
bugtracker =>
'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Search-Query',
repository =>
'https://github.com/karpet/search-query-perl',
},
}
)
),
);