-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMakefile.PL
36 lines (30 loc) · 1019 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
30
31
32
33
34
35
36
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'WWW::Tumblr',
VERSION_FROM => 'lib/WWW/Tumblr.pm',
AUTHOR => q{David Moreno <[email protected]>},
LICENSE => 'perl',
PREREQ_PM => {
'Moose' => 0,
'JSON' => 0,
'LWP::UserAgent' => 0,
'Net::OAuth::Client' => 0,
'HTTP::Request::Common' => 0,
},
TEST_REQUIRES => {
'Test::More' => 0,
'LWP::Simple' => 0,
},
META_MERGE => {
resources => {
homepage => 'http://github.com/damog/www-tumblr',
repository => 'git://github.com/damog/www-tumblr.git',
x_twitter => 'http://twitter.com/habanerd',
bugtracker => 'https://github.com/damog/www-tumblr/issues',
}
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'WWW::Tumblr-*' },
);