File: Makefile.PL

package info (click to toggle)
libmoox-types-setobject-perl 1.01-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 80 kB
  • sloc: perl: 24; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 761 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use strict;
use warnings FATAL => 'all';
use 5.008001;
use ExtUtils::MakeMaker;
(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';

my %RUN_DEPS = (
  'Set::Object' => 0,
  'MooX::Types::MooseLike' => 0.23,
);
my %BUILD_DEPS = (
  'Test::More'  => 0.96,
  'Test::Fatal' => 0.003,
);

WriteMakefile(
  NAME => 'MooX-Types-SetObject',
  VERSION_FROM => 'lib/MooX/Types/SetObject.pm',
  PREREQ_PM => {
    %RUN_DEPS,
  },
  BUILD_REQUIRES => {
    %BUILD_DEPS,
  },
  META_ADD => {
    resources => {
      repository  => 'git://github.com/mateu/MooX-Types-SetObject.git',
      bugtracker  => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=MooX-Types-SetObject',
      IRC         => 'irc://irc.perl.org/#web-simple',
    },
  },
  LICENSE => 'perl',
);