-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
25 lines (25 loc) · 844 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
use 5.008005;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'URI::Encode::XS',
VERSION_FROM => 'lib/URI/Encode/XS.pm',
PREREQ_PM => { 'Test::More' => 0, 'Exporter' => '5.57' },
ABSTRACT_FROM => 'lib/URI/Encode/XS.pm',
AUTHOR => ['David Farrell', 'Christian Hansen'],
LIBS => [''],
OPTIMIZE => '-O3',
DEFINE => '',
INC => '-I.',
LICENSE => 'freebsd',
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/dnmfarrell/URI-Encode-XS.git',
web => 'https://github.com/dnmfarrell/URI-Encode-XS',
},
}})
: ()
),
);