The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;

use Module::Build;

Module::Build->new
    ( module_name => 'HTTP::Server::Simple::Static',
      license     => 'perl',
      create_makefile_pl => 'passthrough',
      requires    => { 'HTTP::Server::Simple' => 0.01 ,
		       'File::Spec::Functions' => 0,
		       'URI::Escape' => 0,
		       'MIME::Types' => 0,
		       'File::MMagic'  => 0,
		       'Exporter' => 0
		       },
    )->create_build_script;