-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
51 lines (44 loc) · 1.12 KB
/
Build.PL
File metadata and controls
51 lines (44 loc) · 1.12 KB
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
use strict;
use warnings;
use Module::Build 0.3601;
my %module_build_args = (
"build_requires" => {
"File::Find" => 0,
"File::Temp" => 0,
"HTTP::Request::Common" => 0,
"Module::Build" => "0.3601",
"Plack::Test" => 0,
"Plack::Util" => 0,
"Test::Class" => 0,
"Test::More" => 0
},
"configure_requires" => {
"Module::Build" => "0.3601"
},
"dist_abstract" => "Plack middleware which turns application/json responses into HTML",
"dist_author" => [
"Manfred Stock <mstock\@cpan.org>"
],
"dist_name" => "Plack-Middleware-JSON-ForBrowsers",
"dist_version" => "0.002000",
"license" => "perl",
"module_name" => "Plack::Middleware::JSON::ForBrowsers",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"Carp" => 0,
"Encode" => 0,
"HTML::Entities" => 0,
"JSON" => 0,
"List::MoreUtils" => 0,
"MRO::Compat" => 0,
"Plack::Middleware" => 0,
"Plack::Util::Accessor" => 0,
"parent" => 0,
"strict" => 0,
"warnings" => 0
},
"script_files" => []
);
my $build = Module::Build->new(%module_build_args);
$build->create_build_script;