summaryrefslogtreecommitdiffstats
path: root/Makefile.PL
blob: d6d0ece91b7e87a8dac7237501bd5f164cb57fd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This module uses Dist::Zilla for development. This Makefile.PL will let you
# run the tests, but you are encouraged to install Dist::Zilla and the needed
# plugins if you intend on doing any serious hacking.

use strict;
use warnings;

use Config;
use ExtUtils::MakeMaker::Dist::Zilla::Develop;

use inc::MMHelper;

my %WriteMakefileArgs = (
    NAME => 'Parse::Keyword',
    %{ inc::MMHelper::mm_args() },
);

eval inc::MMHelper::makefile_pl_extra . ';1;'
    or die $@;

WriteMakefile(%WriteMakefileArgs);