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 strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'File::Find::Rule::DirCompare',
    license             => 'perl',
    dist_author         => q{Jens Rehsack <rehsack@cpan.org>},
    dist_version_from   => 'lib/File/Find/Rule/DirCompare.pm',
    build_requires => {
	'File::Touch' => 0, # test requires
        'Test::More' => 0,
    },
    requires => {
	'File::Find::Rule' => 0.30,
	'Params::Util' => 1.00,
	'Text::Glob' => 0,
    },
    meta_merge => {
	no_index => {
	    directory => [ qw(t/samples) ],
	},
    },
    add_to_cleanup      => [ 'File-Find-Rule-DirCompare-*' ],
    create_makefile_pl => 'traditional',
);

$builder->create_build_script();