]> git.vpit.fr Git - perl/modules/with.git/blob - Makefile.PL
Sort MANIFEST
[perl/modules/with.git] / Makefile.PL
1 use 5.009004;
2
3 use strict;
4 use warnings;
5 use ExtUtils::MakeMaker;
6
7 my $dist = 'with';
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             => 'with',
27     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
28     LICENSE          => 'perl',
29     VERSION_FROM     => 'lib/with.pm',
30     ABSTRACT_FROM    => 'lib/with.pm',
31     PL_FILES         => {},
32     PREREQ_PM        => {
33         'Carp'                 => 0,
34         'Filter::Util::Call'   => 0,
35         'Scalar::Util'         => 0,
36         'Sub::Prototype::Util' => 0.08,
37         'Text::Balanced'       => 0,
38     },
39     MIN_PERL_VERSION => 5.009004,
40     META_MERGE       => \%META,
41     dist             => {
42         PREOP    => 'pod2text lib/with.pm > $(DISTVNAME)/README',
43         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
44     },
45     clean            => {
46         FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
47     },
48 );