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