The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
my $builder = Module::Build->new(
module_name => 'Regexp::Cherokee',
dist_version_from => 'lib/Regexp/Cherokee.pm',
dist_author => 'Daniel Yacob <dyacob\@cpan.org>',
dist_abstract => "Regular Expressions Support for Cherokee Script and the Languages that use it.",
release_status => 'stable',
configure_requires => { 'Module::Build' => 0.42 },
requires => {
'perl' => '5.8.0',
},
license => 'perl',
add_to_cleanup => [ 'Regexp-*' ],
create_makefile_pl => 0, # change to 1 if desired.
meta_merge => {
resources => {
},
x_authority => 'cpan:dyacob'
}
);
$builder->create_build_script();