LPSCBuilder/Build.PL

20 lines
575 B
Plaintext
Raw Normal View History

2022-07-25 03:08:07 +02:00
use Module::Build;
my $home = $ENV{HOME};
my $build = Module::Build->new(
2022-11-30 18:39:01 +01:00
module_name => 'LPSC::Builder',
2022-07-25 03:08:07 +02:00
license => 'GPLv3',
dist_author => 'Sergio Iglesias <contact@owlcode.tech>',
2022-11-30 18:39:01 +01:00
dist_abstract => 'A build system for LPSC',
2022-07-25 03:08:07 +02:00
requires => {
'Path::Tiny' => 0,
'Types::Standard' => 0,
'Params::ValidationCompiler' => 0,
'Getopt::Long::Descriptive' => 0,
'Capture::Tiny' => 0,
'DB_File' => 0,
},
);
$build->create_build_script;