-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
executable file
·38 lines (36 loc) · 1.1 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
#!/usr/bin/perl
use 5.010;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'PGObject::Simple::Role',
AUTHOR => q{Chris Travers, <[email protected]>},
VERSION_FROM => 'lib/PGObject/Simple/Role.pm',
ABSTRACT_FROM => 'lib/PGObject/Simple/Role.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'bsd')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Carp::Clan' => 0,
'Log::Any' => 0,
'Moo::Role' => 0,
'PGObject::Simple' => 3,
},
TEST_REQUIRES => {
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'PGObject-Simple-Role-*' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/ledgersmb/PGObject-Simple-Role.git',
web => 'https://github.com/ledgersmb/PGObject-Simple-Role',
},
},
},
);