The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# This Makefile.PL for B-Hooks-Parser was generated by
# Dist::Zilla::Plugin::MakeMaker::Awesome 0.34.
# Don't edit it but the dist.ini and plugins used to construct it.

use strict;
use warnings;

use 5.006;
use ExtUtils::MakeMaker;

use ExtUtils::Depends 0.302;
my $pkg = ExtUtils::Depends->new(
    'B::Hooks::Parser',
    'B::Hooks::OP::Check',
);
$pkg->install('hook_parser.h');
$pkg->add_xs('Parser.xs');
$pkg->add_pm('lib/B/Hooks/Parser.pm' => '$(INST_LIB)/B/Hooks/Parser.pm');

my %WriteMakefileArgs = (
  "ABSTRACT" => "Interface to perl's parser variables",
  "AUTHOR" => "Florian Ragwitz <rafl\@debian.org>",
  "CONFIGURE_REQUIRES" => {
    "B::Hooks::OP::Check" => "0.18",
    "ExtUtils::Depends" => "0.302",
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "B-Hooks-Parser",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.006",
  "NAME" => "B::Hooks::Parser",
  "PREREQ_PM" => {
    "B::Hooks::OP::Check" => 0,
    "DynaLoader" => 0,
    "parent" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "B::Hooks::EndOfScope" => 0,
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "Test::Exception" => 0,
    "Test::More" => 0
  },
  "VERSION" => "0.13",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

%WriteMakefileArgs = (
    %WriteMakefileArgs,
    $pkg->get_makefile_vars,
    FUNCLIST => [ qw/hook_parser_setup hook_parser_teardown hook_parser_get_linestr hook_parser_get_linestr_offset hook_parser_set_linestr hook_parser_get_lex_stuff hook_parser_clear_lex_stuff hook_toke_skipspace hook_toke_scan_str hook_toke_scan_word/, 'boot_B__Hooks__Parser' ],
);

my %FallbackPrereqs = (
  "B::Hooks::EndOfScope" => 0,
  "B::Hooks::OP::Check" => "0.18",
  "DynaLoader" => 0,
  "ExtUtils::Depends" => "0.302",
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "Test::Exception" => 0,
  "Test::More" => 0,
  "parent" => 0,
  "strict" => 0,
  "warnings" => 0
);

unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);