-
Notifications
You must be signed in to change notification settings - Fork 38
/
Build.PL
46 lines (39 loc) · 1.05 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
use strict;
use warnings;
use 5.10.1;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Galileo',
dist_author => 'Joel Berger',
license => 'perl',
requires => {
'perl' => '5.10.1', # N.B. modern Mojolicious now requires 5.16
'Mojolicious' => '7.15', # Mojo::File
'Mojolicious::Plugin::Memorize' => 0,
'Mojolicious::Plugin::Humane' => '0.07',
'DBD::SQLite' => 0,
'DBIx::Class' => 0,
'DBIx::Class::Candy' => 0,
'DBIx::Class::EncodedColumn' => 0,
'DBIx::Class::DeploymentHandler' => 0,
'Crypt::Eksblowfish::Bcrypt' => 0,
'SQL::Translator' => 0,
'File::ShareDir' => 0,
'File::Copy::Recursive' => 0,
'File::Next' => 0,
},
configure_requires => {
'Module::Build' => 0.38,
},
share_dir => 'lib/Galileo/files',
meta_merge => {
resources => {
repository => "http://github.com/jberger/Galileo",
bugtracker => "http://github.com/jberger/Galileo/issues",
},
no_index => {
file => [ 'README.pod' ],
},
}
);
$builder->create_build_script;