owlcode.tech/Build.PL

26 lines
659 B
Plaintext
Raw Normal View History

2023-05-01 00:02:37 +02:00
#!/usr/bin/env perl
use Module::Build;
my $home = $ENV{HOME};
my $build = Module::Build->new(
module_name => 'BurguillosInfo',
license => 'AGPLv3',
dist_author => 'Sergio Iglesias <contact@owlcode.tech>',
dist_abstract => 'The burguillos.info webpage.',
requires => {
'Mojolicious' => 0,
'Const::Fast' => 0,
'Crypt::URandom' => 0,
'Crypt::Bcrypt' => 0,
'DBI' => 0,
'DBD::Pg' => 0,
'DateTime::Format::ISO8601.pm' => 0,
'DateTime::Format::Mail.pm' => 0,
'SVG' => 0,
2023-05-02 18:19:32 +02:00
'XML::Twig' => 0,
2023-05-03 06:11:29 +02:00
'JSON' => 0,
2023-05-01 00:02:37 +02:00
},
);
$build->create_build_script;