-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
41 lines (34 loc) · 968 Bytes
/
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
#!/usr/bin/env perl
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Stuffo::OAuth2::Server',
dist_author => 'Tudor Marghidanu',
dist_abstract => 'OAuth2 server implementation',
share_dir => 'share',
# NOTE: Keep this list sorted!
requires => {
'Config::JSON' => undef,
'File::ShareDir' => undef,
'Mojolicious' => undef,
'Mojolicious::Plugin::REST' => undef,
'MongoDB' => undef,
'Moose' => undef,
'MooseX::AbstractFactory' => undef,
'MooseX::AbstractMethod' => undef,
'MooseX::ClassAttribute' => undef,
'MooseX::Role::Parameterized' => undef,
'MooseX::Storage' => undef,
'Package::Constants' => undef,
'Session::Token' => undef,
'String::CamelCase' => undef,
'Test::Exception' => undef,
'Test::MockObject' => undef,
'Test::More' => undef,
'Test::Pod' => undef,
'URI' => undef,
'UUID::Random' => undef,
},
);
$builder->create_build_script();