]> git.vpit.fr Git - perl/modules/Thread-Cleanup.git/blob - Makefile.PL
Give an explicit value to dynamic_config
[perl/modules/Thread-Cleanup.git] / Makefile.PL
1 use 5.008;
2
3 use strict;
4 use warnings;
5 use ExtUtils::MakeMaker;
6
7 my $dist = 'Thread-Cleanup';
8
9 my %META = (
10  configure_requires => {
11   'ExtUtils::MakeMaker' => 0,
12  },
13  build_requires => {
14   'ExtUtils::MakeMaker' => 0,
15   'Test::More'          => 0,
16   'threads::shared'     => '0.91',
17  },
18  dynamic_config => 0,
19  resources => {
20   bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
21   homepage   => "http://search.cpan.org/dist/$dist/",
22   license    => 'http://dev.perl.org/licenses/',
23   repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git",
24  },
25 );
26
27 WriteMakefile(
28     NAME             => 'Thread::Cleanup',
29     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
30     LICENSE          => 'perl',
31     VERSION_FROM     => 'lib/Thread/Cleanup.pm',
32     ABSTRACT_FROM    => 'lib/Thread/Cleanup.pm',
33     PL_FILES         => {},
34     PREREQ_PM        => {
35         'XSLoader'      => 0,
36         'threads'       => '1.07',
37     },
38     MIN_PERL_VERSION => 5.008,
39     META_MERGE       => \%META,
40     dist             => {
41         PREOP    => 'pod2text lib/Thread/Cleanup.pm > $(DISTVNAME)/README',
42         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
43     },
44     clean            => {
45         FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
46     }
47 );