Dir-Watch/Dir-Watch/Makefile.PL

21 lines
599 B
Perl

use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Dir::Watch',
AUTHOR => 'Zane C. Bowers <vvelox@vvelox.net>',
VERSION_FROM => 'lib/Dir/Watch.pm',
ABSTRACT_FROM => 'lib/Dir/Watch.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More'=>0,
'Cwd'=>0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Dir-Watch-*' },
);