summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 34f4caf1b9d77abb30b1ee314689014490c2b755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
    'NAME'         => 'File::Find::Rule',
    'VERSION_FROM' => 'lib/File/Find/Rule.pm',
    'PREREQ_PM'    => {
        'File::Find'      => 0,
        'File::Spec'      => 0,
        'Number::Compare' => 0,
        'Text::Glob'      => '0.07',
        'Test::More'      => 0,
    },
    'EXE_FILES' => ['findrule'],
);