File: Makefile.PL

package info (click to toggle)
libtry-tiny-smartcatch-perl 0.5-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 104 kB
  • sloc: perl: 202; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 766 bytes parent folder | download | duplicates (5)
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
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Try::Tiny::SmartCatch',
    AUTHOR              => q{Marcin Sztolcman <marcin@urzenia.net>},
    VERSION_FROM        => 'lib/Try/Tiny/SmartCatch.pm',
    ABSTRACT_FROM       => 'lib/Try/Tiny/SmartCatch.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'MIT')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Try-Tiny-SmartCatch-*' },
    META_MERGE        => {
        resources => {
            repository  =>  'https://github.com/mysz/try-tiny-smartcatch',
        },
    },
);