File: Makefile.PL

package info (click to toggle)
libmodule-starter-smart-perl 0.0.9-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 224; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 1,389 bytes parent folder | download | duplicates (2)
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
31
32
33
34
35
36
37
38
39
40
41
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Module::Starter::Smart',
    AUTHOR              => 'Ruey-Cheng Chen <rueycheng@cpan.com>',
    VERSION_FROM        => 'lib/Module/Starter/Smart.pm',
    ABSTRACT_FROM       => 'lib/Module/Starter/Smart.pm',
    MIN_PERL_VERSION    => 5.6.0,
    PL_FILES            => {},
    LICENSE             => 'perl',
    BUILD_REQUIRES      => {
        'ExtUtils::MakeMaker'  => 6.48,
        'File::Spec'           => 0,
        'parent'               => 0,
        'Module::Starter'      => 1.58,
        'Test::More'           => 0,
        'Test::TempDir::Tiny'  => 0,
    },
    PREREQ_PM => {
        'ExtUtils::Command'    => 0,
        'File::Spec'           => 0,
        'parent'               => 0,
        'Module::Starter'      => 1.58,
	'Test::More'           => 0,
        'Test::TempDir::Tiny'  => 0,
    },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            repository => {
                type  => 'git',
                url   => 'https://github.com/rueycheng/Module-Starter-Smart.git',
                web   => 'https://github.com/rueycheng/Module-Starter-Smart',
            },
        },
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Module-Starter-Smart-*' },
);