-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
31 lines (29 loc) · 855 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;
my $eumm_version = $ExtUtils::MakeMaker::VERSION;
$eumm_version =~ s/_//;
WriteMakefile(
NAME => 'BookStore',
AUTHOR => q{Mohammad S Anwar <[email protected]>},
VERSION_FROM => 'lib/BookStore.pm',
ABSTRACT => 'lib/BookStore.pm',
($eumm_version >= 6.3001
? ('LICENSE'=> 'perl')
: ()),
BUILD_REQUIRES => {
'JSON' => 0,
'Test::More' => 0,
'Plack::Test' => 0,
'Ref::Util' => 0,
'HTTP::Request::Common' => 0,
},
PREREQ_PM => {
'Moo' => 2.003006,
'Dancer2' => 0.300004,
'Dancer2::Plugin::DBIC' => 0,
'Dancer2::Serializer::JSON' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'BookStore-*' },
);