summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: d1ed19cb561f88bc7ff46e1bf3f2e979c1432b9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use ExtUtils::MakeMaker qw(WriteMakefile);

WriteMakefile(
  NAME         => 'Data::Compare',
  META_MERGE => {
    license => 'other',
    resources => {
      repository => 'https://github.com/DrHyde/perl-modules-Data-Compare',
      bugtracker => 'https://github.com/DrHyde/perl-modules-Data-Compare/issues/new'
    },
  },
  VERSION_FROM => "lib/Data/Compare.pm",
  PREREQ_PM    => {
    File::Find::Rule => 0.10,
    Scalar::Util     => 0
  },
  clean        => { FILES => '*.bak *.old mibs/*.dump lib/*/*~' },
);