summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: b9a9fe7433d1e224ed0f95bec9e11d3687e1d26d (plain)
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',
        },
    },
);