-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
30 lines (29 loc) · 993 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
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'PGObject::Util::PseudoCSV',
AUTHOR => q{Chris Travers <[email protected]>},
VERSION_FROM => 'lib/PGObject/Util/PseudoCSV.pm',
ABSTRACT_FROM => 'lib/PGObject/Util/PseudoCSV.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'bsd')
: ()),
PL_FILES => {},
BUILD_REQUIRES => {
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'PGObject-Util-PseudoCSV-*' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/ledgersmb/PGObject-Util-PseudoCSV.git',
web => 'https://github.com/ledgersmb/PGObject-Util-PseudoCSV',
},
},
},
);