File: Makefile.PL

package info (click to toggle)
libapp-cpants-lint-perl 0.05-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 176 kB
  • sloc: perl: 243; makefile: 5
file content (18 lines) | stat: -rw-r--r-- 489 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use ExtUtils::MakeMaker::CPANfile;

WriteMakefile(
  NAME          => 'App::CPANTS::Lint',
  AUTHOR        => 'Kenichi Ishigaki <ishigaki@cpan.org>',
  VERSION_FROM  => 'lib/App/CPANTS/Lint.pm',
  ABSTRACT_FROM => 'lib/App/CPANTS/Lint.pm',
  LICENSE       => 'perl',
  EXE_FILES     => ['bin/cpants_lint.pl'],
  MIN_PERL_VERSION => '5.008001',
  META_MERGE => {
    resources => {
      repository => 'https://github.com/charsbar/App-CPANTS-Lint',
    },
  },
);