The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use Module::Build;
my $build = Module::Build->new
  (
   module_name => 'Text::ASCIITable',
   license => 'perl',
   requires => {
                'perl'           => '5.6.0',
                'Carp'						=> 0,
		'List::Util'	=> 0,
		'Encode'	=> 0
               },
		create_makefile_pl => 'passthrough',
  );
$build->create_build_script;