File: Makefile.PL

package info (click to toggle)
libparse-distname-perl 0.05-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 240 kB
  • sloc: perl: 161; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 563 bytes parent folder | download
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          => 'Parse::Distname',
    AUTHOR        => 'Kenichi Ishigaki <ishigaki@cpan.org>',
    VERSION_FROM  => 'lib/Parse/Distname.pm',
    ABSTRACT_FROM => 'lib/Parse/Distname.pm',
    LICENSE       => 'perl',
    test          => {TESTS => 't/*.t t/*/*.t'},
    META_MERGE => {
        resources => {
            repository => 'https://github.com/charsbar/Parse-Distname',
            bugtracker => 'https://github.com/charsbar/Parse-Distname/issues',
        },
    },
);