Peace/Build.PL

35 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2022-02-23 02:52:14 +01:00
use Module::Build;
my $home = $ENV{HOME};
my $build = Module::Build->new(
module_name => 'Peace',
license => 'AGPLv3',
dist_author => 'Sergio Iglesias <sergiotarxz@posteo.net>',
2022-03-14 19:14:05 +01:00
dist_abstract => 'Peace application shop.',
requires => {
'Mojolicious' => 0,
'DBI' => 0,
'DBD::Pg' => 0,
'DBD::Mock' => 0,
'DateTime' => 0,
'DateTime::Format::Pg' => 0,
'Test::Most' => 0,
'Test::MockObject' => 0,
'Test::MockModule' => 0,
'Test::Pod::Coverage' => 0,
'JSON' => 0,
'YAML' => 0,
'Capture::Tiny' => 0,
'Email::Valid' => 0,
'Crypt::Bcrypt' => 0,
'Email::Sender' => 0,
2022-04-24 03:01:21 +02:00
'HTML::Entities' => 0,
2022-02-23 02:52:14 +01:00
},
install_path => {
'templates' => "$HOME/.local/share/peace/template",
'public' => "$HOME/.local/share/peace/public",
2022-02-23 02:52:14 +01:00
}
);
$build->create_build_script;