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