forked from MediaWiki-Bot/MediaWiki-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
60 lines (53 loc) · 1.46 KB
/
Build.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
59
60
use strict;
use warnings;
use Module::Build 0.3601;
my %module_build_args = (
"build_requires" => {
"File::Find" => 0,
"File::Spec" => 0,
"File::Temp" => 0,
"Module::Build" => "0.3601",
"Test::More" => "0.96",
"Test::NoWarnings" => 0,
"Test::Warn" => 0,
"utf8" => 0
},
"configure_requires" => {
"Module::Build" => "0.3601"
},
"dist_abstract" => "a high-level bot framework for interacting with MediaWiki wikis",
"dist_author" => [
"Dan Collins <dcollins\@cpan.org>",
"Mike.lifeguard <lifeguard\@cpan.org>",
"Alex Rowe <alex.d.rowe\@gmail.com>",
"Oleg Alexandrov <oleg.alexandrov\@gmail.com>",
"jmax.code <jmax.code\@gmail.com>",
"Stefan Petrea <stefan.petrea\@gmail.com>",
"kc2aei <kc2aei\@gmail.com>",
"bosborne\@alum.mit.edu",
"Brian Obio <brianobio\@gmail.com>",
"patch and bug report contributors"
],
"dist_name" => "MediaWiki-Bot",
"dist_version" => "5.005004",
"license" => "gpl",
"module_name" => "MediaWiki::Bot",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"Carp" => 0,
"Digest::MD5" => "2.39",
"Encode" => 0,
"File::Basename" => 0,
"HTML::Entities" => "3.28",
"LWP::Protocol::https" => "0.57",
"MediaWiki::API" => "0.36",
"Module::Pluggable" => 0,
"perl" => "5.008",
"strict" => 0,
"warnings" => 0
},
"script_files" => []
);
my $build = Module::Build->new(%module_build_args);
$build->create_build_script;