File: Makefile.PL

package info (click to toggle)
libmodule-starter-plugin-simplestore-perl 0.144-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112 kB
  • sloc: perl: 117; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 705 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Module::Starter::Plugin::DirStore',
    ABSTRACT            => 'template storage methods for Module::Starter',
		DISTNAME            => 'Module-Starter-Plugin-SimpleStore',
    AUTHOR              => 'Ricardo SIGNES <rjbs@cpan.org>',
    LICENSE             => 'perl',
    VERSION_FROM        => 'lib/Module/Starter/Plugin/DirStore.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More'      => 0,
				'Module::Starter' => 1.32
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Module-Starter-Plugin-SimpleStore-*' },
);