1use 5.005;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5
6use strict;
7my $meta_merge = {
8    META_MERGE => {
9        resources => {
10            repository  => 'http://github.com/mschilli/dns-zoneparse-perl',
11        },
12    }
13};
14
15WriteMakefile(
16    'NAME'		=> 'DNS::ZoneParse',
17    'VERSION_FROM'	=> 'lib/DNS/ZoneParse.pm', # finds $VERSION
18    'PREREQ_PM'		=> {
19                         Storable     => 0.407,
20                         'Test::More' => 0.31,
21                        },
22    'ABSTRACT_FROM' => 'lib/DNS/ZoneParse.pm',
23    'AUTHOR' => 'Simon Flack (perl@simonflack.com)',
24    $ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
25);
26