-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
30 lines (28 loc) · 1.06 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
######################################################################
# Makefile.PL for PHP::HTTPBuildQuery
# Copyright (c) 2008 Yahoo! Inc. All rights reserved. The
# copyrights to the contents of this file are licensed under the Perl
# Artistic License (ver. 15 Aug 1997)
######################################################################
# 5.6 has broken utf8 support, requiring 5.8
use 5.008;
use ExtUtils::MakeMaker;
my $meta_merge = {
META_MERGE => {
resources => {
repository => 'http://github.com/mschilli/php-httpbuildquery-perl',
},
}
};
WriteMakefile(
'NAME' => 'PHP::HTTPBuildQuery',
'VERSION_FROM' => 'HTTPBuildQuery.pm', # finds $VERSION
'PREREQ_PM' => {
"URI::Escape" => 0,
}, # e.g., Module::Name => 1.1
'LICENSE' => 'artistic',
$ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'HTTPBuildQuery.pm',
AUTHOR => 'Mike Schilli <cpan@perlmeister.com>') : ()),
);