forked from sysread/Reddit-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
29 lines (26 loc) · 885 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
26
27
28
29
use strict;
use warnings;
use 5.008001;
use ExtUtils::MakeMaker 6.30;
WriteMakefile(
NAME => 'Reddit::Client',
AUTHOR => q{"Jeff Ober" <"jeffober@gmail.com">},
VERSION_FROM => 'lib/Reddit/Client.pm',
ABSTRACT_FROM => 'lib/Reddit/Client.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002 ? ('LICENSE'=> 'perl') : ()),
PL_FILES => {},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Reddit-Client-*' },
PREREQ_PM => {
'HTTP::Request' => 0,
'JSON' => 0,
'List::Util' => 0,
'LWP::UserAgent' => 0,
'URI::Encode' => 0,
},
BUILD_REQUIRES => {
'IO::Capture::Stderr' => 0,
'Test::More' => 0,
'Test::MockModule' => 0,
}
);