update changelog
[p5sagit/Devel-BeginLift.git] / Makefile.PL
CommitLineData
1594b447 1use inc::Module::Install 0.67;
2
5e5bdebb 3use ExtUtils::Depends;
4
1594b447 5name 'Devel-BeginLift';
1594b447 6all_from 'lib/Devel/BeginLift.pm';
7
949d4d5b 8requires 'B::Hooks::OP::Check::EntersubForCV' => '0.03';
9d3d48c3 9
c6e4d2a9 10build_requires 'Test::More';
5e5bdebb 11build_requires 'B::Hooks::OP::Check::EntersubForCV';
12
13configure_requires 'ExtUtils::Depends';
14configure_requires 'B::Hooks::OP::Check::EntersubForCV';
15
16my $pkg = ExtUtils::Depends->new('Devel::Declare', 'B::Hooks::OP::Check::EntersubForCV');
0b134f17 17
c6e4d2a9 18WriteMakefile(
19 dist => {
20 PREOP => 'pod2text lib/Devel/BeginLift.pm >$(DISTVNAME)/README'
5e5bdebb 21 },
22 $pkg->get_makefile_vars,
c6e4d2a9 23);