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
|
use 5.010;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'PGObject::Type::DateTime',
AUTHOR => q{Chris Travers <chris.travers@gmail.com>},
VERSION_FROM => 'lib/PGObject/Type/DateTime.pm',
ABSTRACT_FROM => 'lib/PGObject/Type/DateTime.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'BSD')
: ()),
PL_FILES => {},
PREREQ_PM => {
'PGObject' => '1.3',
'DateTime' => '1.05', # 'local_week' was added in 1.05
'DateTime::TimeZone' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'PGObject-Type-DateTime-*' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/ledgersmb/PGObject-Type-DateTime.git',
web => 'https://github.com/ledgersmb/PGObject-Type-DateTime',
},
},
},
);
|