File: Makefile.PL

package info (click to toggle)
libdata-compare-perl 1.25-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 260 kB
  • ctags: 16
  • sloc: perl: 422; sh: 3; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (3)
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/*/*~' },
);