LasTres/Build.PL

28 lines
935 B
Plaintext
Raw Normal View History

2023-06-01 08:45:43 +02:00
#!/usr/bin/env perl
use Module::Build;
my $home = $ENV{HOME};
my $build = Module::Build->new(
module_name => 'LasTres',
license => 'AGPLv3',
dist_author => 'Sergio Iglesias <contact@owlcode.tech>',
dist_abstract => 'Juego de L3TDE.',
requires => {
2023-06-08 09:02:32 +02:00
'Mojolicious' => 0,
'Moo' => 0,
'Params::ValidationCompiler' => 0,
'Types::Standard' => 0,
'Crypt::URandom' => 0,
'Crypt::Bcrypt' => 0,
'DBIx::Class' => 0,
2023-06-01 08:45:43 +02:00
'DBIx::Class::DeploymentHandler' => 0,
2023-06-08 09:02:32 +02:00
'UUID::URandom' => 0,
'Module::Pluggable' => 0,
'Redis' => 0,
'List::AllUtils' => 0,
2023-06-13 18:46:19 +02:00
'DateTime::Format::Pg' => 0,
2023-06-01 08:45:43 +02:00
},
);
$build->create_build_script;