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

my $build = new Module::Build 
  (
   module_name  => 'Foo::Bar',
   script_files => [ 'bin/foobar.pl' ],
   dist_author  => 'John Doe',
   license      => 'perl'
  );

$build->create_build_script;