forked from Raku/modules.raku.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
85 lines (83 loc) · 3.9 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
use strict;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Perl6::Modules::Org',
dist_abstract => 'Perl 6 Ecosystem',
dist_name => 'perl6.modules.org',
dist_author => 'Perl 6 Hackers',
license => 'perl',
create_makefile_pl => 'passthrough',
dist_version => '0.1',
recursive_test_files => 1,
requires => {
'Archive::Any' => '0.0945',
'Carp' => '0',
'CSS::Minifier::XS' => '0.09',
'CSS::Sass' => '3.3.0',
'DBIx::Class::Candy' => '0.005000',
'DBIx::Class::Schema' => '0',
'Data::GUID' => '0.048',
'Data::UUID' => '1.221',
'Exporter::Easy' => '0.18',
'Fcntl' => '0',
'File::Glob' => '0',
'File::Path' => '0',
'File::Spec' => '0',
'File::Spec::Functions' => '0',
'File::Temp' => '0',
'FindBin' => '0',
'Getopt::Long' => '2.48',
'IO::Handle' => '0',
'IO::Socket::SSL' => '2.051',
'IPC::Open3' => '0',
'Imager::File::PNG' => '0.92',
'Image::Size' => '3.3',
'Import::Into' => '0',
'JavaScript::Minifier::XS' => '0.11',
'JSON::Meth' => '1.001006',
'List::Util' => '1.45',
'List::UtilsBy' => '0.10',
'LWP::Protocol::https' => '6.07',
'LWP::UserAgent' => '0',
'Mew' => '1.001006',
'Mojo::Base' => '0',
'Mojo::Collection' => '0',
'Mojo::Log' => '0',
'Mojo::URL' => '0',
'Mojo::UserAgent' => '0',
'Mojo::Util' => '0',
'Mojolicious' => '7.31',
'Mojolicious::Commands' => '0',
'Mojolicious::Plugin::AssetPack' => '1.42',
'POSIX' => '0',
'Pithub' => '0.01030',
'Pod::Usage' => '1.67',
'Sort::Versions' => '1.62',
'SQL::Translator' => '0.11021',
'Test::Mojo::Role::Debug' => '1.003004',
'Test::Mojo::Role::ElementCounter' => '1.001006',
'Test::Mojo::Role::SubmitForm' => '1.001007',
'Test::Mojo::WithRoles' => '0.02',
'Test::More' => '0',
'Test::Most' => '0.34',
'Test::Output' => '1.03',
'Test::Script' => '1.10',
'Text::FileTree' => '0.24',
'Text::MultiMarkdown' => '1.000035',
'Time::Moment' => '0.38',
'Toadfarm' => '0.72',
'base' => '0',
'blib' => '1.01',
'constant' => '0',
'experimental' => '0',
'strict' => '0',
'strictures' => '2.000002',
'warnings' => '0',
## deps used by some modules but they only optionally install them
'Module::Runtime' => '0.014', # Module::Pluggable
'Module::Require' => '0.05', # Module::Pluggable
'IO::Socket::IP' => '0.37', # required to fix an issue with SSL in Mojo
'IO::Socket::SSL' => '2.020', # Mojo::UserAgent
}
);
$build->create_build_script;