1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
use v5;
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Net::Async::FastCGI',
requires => {
perl => '5.014',
'Encode' => 0,
'Exporter' => '5.57',
'HTTP::Request' => 0,
'HTTP::Response' => 0,
'IO::Async::Listener' => '0.35',
'IO::Async::Loop' => '0.16',
'IO::Async::Protocol::Stream' => '0.33',
'IO::Async::Test' => 0,
'Net::FastCGI::Constant' => '0.10',
'Net::FastCGI::Protocol' => '0.10',
'Tie::Handle' => 0,
},
build_requires => {
'Test2::V0' => '0.000149',
},
auto_configure_requires => 0, # Don't add M::B to configure_requires
license => 'perl',
create_license => 1,
create_readme => 1,
);
$build->create_build_script;
|