forked from racke/Hermes-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
24 lines (23 loc) · 808 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Hermes::API::ProPS',
AUTHOR => q{Stefan Hornburg (Racke) <[email protected]>},
VERSION_FROM => 'lib/Hermes/API/ProPS.pm',
ABSTRACT_FROM => 'lib/Hermes/API/ProPS.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Log::Dispatch' => 0,
'Locale::Geocode' => 0,
'SOAP::Lite' => 0,
'IO::File' => 0,
'MIME::Base64' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Hermes-API-ProPS-*' },
test => { TESTS => join( ' ', (glob( 't/*.t'), glob('t/*/*.t')))},
);