1use 5.006001;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    NAME              => 'Module::Find',
7    VERSION_FROM      => 'Find.pm', # finds $VERSION
8    PREREQ_PM         => {
9        'Test::More'  => 0,
10        'File::Find'  => 0,
11        'File::Spec'  => 0},
12    ABSTRACT_FROM  => 'Find.pm', # retrieve abstract from module
13    AUTHOR         => 'Christian Renz <crenz@web42.com>',
14    LICENSE        => 'perl',
15    NO_META        => 1 # or else our build prereqs will be gone
16);
17