File: Makefile.PL

package info (click to toggle)
libregexp-reggrp-perl 2.01-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 132 kB
  • sloc: perl: 1,046; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 713 bytes parent folder | download
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
#!perl

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
  NAME          => 'Regexp::RegGrp',
  ABSTRACT_FROM => 'lib/Regexp/RegGrp.pm',
  VERSION_FROM  => 'lib/Regexp/RegGrp.pm',
  AUTHOR        => 'Lee Johnson <leejo@cpan.org>',
  LICENSE       => 'perl',
  PREREQ_PM => {
  },
  BUILD_REQUIRES => {
    'Test::More'               => 0,
  },
  META_MERGE => {
    resources => {
      license    => 'http://dev.perl.org/licenses/',
      homepage   => 'https://metacpan.org/module/Regexp::RegGrp',
      bugtracker => 'https://github.com/leejo/regexp-reggrp-perl/issues',
      repository => 'https://github.com/leejo/regexp-reggrp-perl'
    },
  },
  test => {
    TESTS => 't/*.t',
  },
);