CGI-Mungo
view release on metacpan or search on metacpan
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'CGI::Mungo',
license => 'perl',
dist_author => 'MacGyveR <dumb@cpan.org>',
dist_abstract => 'Very simple CGI web framework',
requires => {
"CGI::Thin::Cookies" => 0,
"HTTP::Response" => 0,
"CGI::Minimal" => 0,
"Carp" => 0,
"Digest::SHA1" => 0,
"File::Basename" => 0,
"Data::Dumper" => 0,
"Template" => 0,
"File::Spec" => 0
},
build_requires => {
"Test::More" => 0,
"HTTP::Daemon" => 0,
"HTTP::Status" => 0,
"HTTP::Response" => 0,
},
create_makefile_pl => 'traditional'
);
$build->create_build_script;
( run in 0.469 second using v1.01-cache-2.11-cpan-99c4e6809bf )