You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
use Module::Build;
|
|
|
|
my $home = $ENV{HOME};
|
|
|
|
my $build = Module::Build->new(
|
|
module_name => 'TDT::Cli',
|
|
license => 'AGPLv3',
|
|
requires => {
|
|
'Mojolicious' => 0,
|
|
'JSON' => 0,
|
|
'Const::Fast' => 0,
|
|
'IO::Socket::SSL' => 0,
|
|
'Net::SSLeay' => 0,
|
|
},
|
|
);
|
|
$build->create_build_script;
|