File: Makefile.PL

package info (click to toggle)
libstring-interpolate-named-perl 1.06-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 148 kB
  • sloc: perl: 430; makefile: 2
file content (40 lines) | stat: -rw-r--r-- 1,054 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
31
32
33
34
35
36
37
38
39
40
#! perl

use strict;
use warnings;

# Ease the life of the CPAN testers.
exit 0 if $ENV{AUTOMATED_TESTING} && $] < 5.010001;

use ExtUtils::MakeMaker;

WriteMakefile(
 NAME                => 'String::Interpolate::Named',
 AUTHOR              => 'Johan Vromans <jv@cpan.org>',
 VERSION_FROM        => 'lib/String/Interpolate/Named.pm',
 ABSTRACT_FROM       => 'lib/String/Interpolate/Named.pm',
 LICENSE             => 'perl_5',
 PL_FILES            => {},
 MIN_PERL_VERSION    => "5.010001",
 PREREQ_PM           => {
			},
 TEST_REQUIRES       => {
			 'Test::More'  => 0,
			},
 META_MERGE => {
   resources => {
     repository => {
       type => 'git',
       web  => 'https://github.com/sciurius/perl-String-Interpolate-Named',
       url  => 'https://github.com/sciurius/perl-String-Interpolate-Named.git',
     },
     bugtracker => {
       web => "https://github.com/sciurius/perl-String-Interpolate-Named/issues",
     },
   },
   'meta-spec' => {
     version => '2',
     url     => 'https://metacpan.org/pod/CPAN::Meta::Spec',
   },
 },
);