-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
58 lines (56 loc) · 1.98 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $pm = 'lib/SomethingAwful/Forums.pm';
my $repo = 'https://github.com/ugexe/SomethingAwful--Forums';
my $bugs = 'https://github.com/ugexe/SomethingAwful--Forums/issues';
WriteMakefile (
NAME => 'SomethingAwful::Forums',
VERSION => '0.01',
ABSTRACT => 'somethingawful.com toolkit for scraping and automated posting ',
AUTHOR => '<ugexe@cpan.org>',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.014',
PREREQ_PM => {
'Web::Scraper' => 0,
'WWW::Mechanize' => 0,
'Regexp::Common' => 0,
'Moose' => 0,
'Method::Signatures' => 0,
'Coro' => 0,
'URI' => 0,
'namespace::autoclean' => 0,
'Modern::Perl' => 0,
'LWP::Protocol::AnyEvent::http' => 0,
},
RECOMMENDS => {
'Getopt::Long::Descriptive' => 0,
'Number::Range' => 0,
'Acme::Goatse' => 0,
'String::Markov' => 0,
'Try::Tiny' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
META_MERGE => {
resources => {
repository => $repo,
bugtracker => $bugs,
},
provides => {
'SomethingAwful::Forums::Scraper::Index' => {
file => 'lib/SomethingAwful::Forums::Scraper::Index.pm',
version => '0.01',
},
'SomethingAwful::Forums::Scraper::Forum' => {
file => 'lib/SomethingAwful::Forums::Scraper::Forum.pm',
version => '0.01',
},
'SomethingAwful::Forums::Scraper::Thread' => {
file => 'lib/SomethingAwful::Forums::Scraper::Thread.pm',
version => '0.01',
},
},
},
);