File: Makefile.PL

package info (click to toggle)
libmodule-starter-smart-perl 0.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 92 kB
  • ctags: 16
  • sloc: perl: 198; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 952 bytes parent folder | download
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
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Module::Starter::Smart',
    AUTHOR              => 'Ruey-Cheng Chen <rueycheng@gmail.com>',
    VERSION_FROM        => 'lib/Module/Starter/Smart.pm',
    ABSTRACT_FROM       => 'lib/Module/Starter/Smart.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
	'ExtUtils::Command' => 0,
	'File::Spec' => 0,
	'parent' => 0,
	'Module::Starter' => 1.58,
    },
    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-*' },
);