burguillos.info/Build.PL

33 lines
1.1 KiB
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 => {
2023-08-08 19:39:13 +02:00
'Mojolicious' => 0,
'Const::Fast' => 0,
'Crypt::URandom' => 0,
'Crypt::Bcrypt' => 0,
'DBI' => 0,
'DBD::Pg' => 0,
2023-05-01 00:02:37 +02:00
'DateTime::Format::ISO8601.pm' => 0,
2023-08-08 19:39:13 +02:00
'DateTime::Format::Mail.pm' => 0,
2023-09-07 18:12:28 +02:00
'DateTime::Format::Pg' => 0,
2023-08-08 19:39:13 +02:00
'SVG' => 0,
'XML::Twig' => 0,
'JSON' => 0,
'IP::Geolocation::MMDB' => 0,
2023-08-20 13:51:32 +02:00
'Moo' => 0,
'Moo::Role' => 0,
'Module::Pluggable' => 0,
'List::AllUtils' => 0,
2023-09-05 19:29:30 +02:00
'Lingua::Stem::Snowball' => 0,
2023-05-01 00:02:37 +02:00
},
);
$build->create_build_script;