-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuild.PL
62 lines (55 loc) · 1.33 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
61
62
use strict;
use warnings;
use Module::Build 0.3601;
my %module_build_args = (
"build_requires" => {
"Dancer::Test" => 0,
"File::Find" => 0,
"File::Temp" => 0,
"Module::Build" => "0.3601",
"Test::DBIx::Class" => 0,
"Test::More" => 0
},
"configure_requires" => {
"ExtUtils::MakeMaker" => "6.30",
"Module::Build" => "0.3601"
},
"dist_abstract" => "command line pastebin",
"dist_author" => [
"Mike Doherty <doherty\@cpan.org>"
],
"dist_name" => "WWW-Hashbang-Pastebin",
"dist_version" => "0.004",
"license" => "perl",
"module_name" => "WWW::Hashbang::Pastebin",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"DBIx::Class::Core" => 0,
"DBIx::Class::Schema" => 0,
"Daemon::Control" => 0,
"Dancer" => 0,
"Dancer::Plugin::DBIC" => 0,
"Dancer::Plugin::EscapeHTML" => 0,
"DateTime" => 0,
"DateTime::Format::MySQL" => 0,
"DateTime::Format::SQLite" => 0,
"Integer::Tiny" => 0,
"Plack" => 0,
"SQL::Translator" => "0.11006",
"Starman" => 0,
"Template" => 0,
"Try::Tiny" => 0,
"YAML" => 0,
"base" => 0,
"perl" => "5.014000",
"strict" => 0,
"warnings" => 0
},
"script_files" => [
"bin/app.pl",
"bin/pastebin"
]
);
my $build = Module::Build->new(%module_build_args);
$build->create_build_script;