remove unneeded shebang
[p5sagit/Devel-Declare.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3
4 use 5.008001;
5 use ExtUtils::MakeMaker;
6 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
7
8 use ExtUtils::Depends;
9 my $pkg = ExtUtils::Depends->new('Devel::Declare', 'B::Hooks::OP::Check');
10
11 my %TEST_DEPS = (
12     'B::Hooks::OP::Check' => '0.19',
13     'Test::More' => '0.88',
14     'Test::Requires' => '0',
15 );
16
17 # have to do this since old EUMM dev releases miss the eval $VERSION line
18 my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5707 };
19
20 sub MY::postamble {
21     '$(OBJECT) : stolen_chunk_of_toke.c'
22 }
23
24 WriteMakefile(
25     NAME => 'Devel::Declare',
26     AUTHOR => 'Matt S Trout - <mst@shadowcat.co.uk> - original author',
27     VERSION_FROM => 'lib/Devel/Declare.pm',
28     MIN_PERL_VERSION => '5.008001',
29
30     CONFIGURE_REQUIRES => {
31         # minimum version that works on Win32+gcc
32         'ExtUtils::Depends' => 0.302,
33
34         # minimum version that depends on ExtUtils::Depends 0.302
35         'B::Hooks::OP::Check' => '0.19',
36     },
37
38     PREREQ_PM => {
39         'Scalar::Util' => 1.11, # set_prototype appeared in this version
40         'B::Hooks::OP::Check' => '0.19',
41         'B::Hooks::EndOfScope' => '0.05',
42         'Sub::Name' => 0,
43         ($mymeta_works ? () : (%TEST_DEPS)),
44     },
45
46     $mymeta_works ? (BUILD_REQUIRES => \%TEST_DEPS) : (),
47
48     META_MERGE => {
49         'meta-spec' => { version => 2 },
50         dynamic_config => 0,
51         resources => {
52             # r/w: p5sagit@git.shadowcat.co.uk:Devel-Declare.git
53             repository => {
54                 url => 'git://git.shadowcat.co.uk/p5sagit/Devel-Declare.git',
55                 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Devel-Declare.git',
56                 type => 'git',
57             },
58             bugtracker => {
59                 mailto => 'bug-Devel-Declare@rt.cpan.org',
60                 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Devel-Declare',
61             },
62         },
63     },
64
65     C => [ 'Declare.c' ],
66     XS => { 'Declare.xs' => 'Declare.c' },
67
68     $pkg->get_makefile_vars,
69 );
70