forked from sysread/Reddit-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
25 lines (24 loc) · 687 Bytes
/
Copy pathMakefile.PL
File metadata and controls
25 lines (24 loc) · 687 Bytes
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.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Reddit::API',
AUTHOR => q{"Jeff Ober" <"jeffober@gmail.com">},
VERSION_FROM => 'lib/Reddit/API.pm',
ABSTRACT_FROM => 'lib/Reddit/API.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'HTTP::Request' => 0,
'JSON' => 0,
'List::Util' => 0,
'LWP::UserAgent'=> 0,
'Test::More' => 0,
'URI::Encode' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Reddit-API-*' },
);