]> git.vpit.fr Git - perl/modules/Thread-Cleanup.git/blob - Makefile.PL
689b672f6d5dce2822605b50bf616b49972f3ef9
[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  resources => {
19   bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
20   homepage   => "http://search.cpan.org/dist/$dist/",
21   license    => 'http://dev.perl.org/licenses/',
22   repository => "http://git.profvince.com/?p=perl/modules/$dist.git",
23  },
24 );
25
26 WriteMakefile(
27     NAME             => 'Thread::Cleanup',
28     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
29     LICENSE          => 'perl',
30     VERSION_FROM     => 'lib/Thread/Cleanup.pm',
31     ABSTRACT_FROM    => 'lib/Thread/Cleanup.pm',
32     PL_FILES         => {},
33     PREREQ_PM        => {
34         'XSLoader'      => 0,
35         'threads'       => '1.07',
36     },
37     MIN_PERL_VERSION => 5.008,
38     META_MERGE       => \%META,
39     dist             => {
40         PREOP    => 'pod2text lib/Thread/Cleanup.pm > $(DISTVNAME)/README',
41         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
42     },
43     clean            => {
44         FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
45     }
46 );