Devel::GlobalDestruction
[p5sagit/Devel-GlobalDestruction.git] / Makefile.PL
1 #!/usr/bin/perl -w
2
3 use strict;
4
5 use ExtUtils::MakeMaker;
6
7 WriteMakefile(
8         NAME         => 'Devel::GlobalDestruction',
9         VERSION_FROM => 'lib/Devel/GlobalDestruction.pm',
10         INSTALLDIRS  => 'site',
11         SIGN         => 1,
12         PL_FILES     => { },
13         PREREQ_PM    => {
14                 'Test::use::ok' => 0,
15         },
16 );
17