-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
25 lines (24 loc) · 728 Bytes
/
Makefile.PL
File metadata and controls
25 lines (24 loc) · 728 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 => 'WebService::Embedly',
AUTHOR => q{Greg Heo <greg@node79.com>},
VERSION_FROM => 'lib/WebService/Embedly.pm',
ABSTRACT_FROM => 'lib/WebService/Embedly.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'mit')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Carp' => 0,
'JSON' => 0,
'LWP::UserAgent' => 0,
'URI' => 0,
'URI::Escape' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'WebService-Embedly-*' },
);