File: Makefile.PL

package info (click to toggle)
libfile-loadlines-perl 1.047-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 204 kB
  • sloc: perl: 545; makefile: 2
file content (47 lines) | stat: -rw-r--r-- 980 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
42
43
44
45
46
47
#! perl

# Ease the life of the CPAN testers.
use v5.10.1;

use strict;
use warnings;

# Need EU::MM that understands *_REQUIRES.
use ExtUtils::MakeMaker 6.76;

WriteMakefile
(
  NAME				=> 'File::LoadLines',
  AUTHOR			=> 'Johan Vromans <jv@cpan.org>',
  VERSION_FROM			=> 'lib/File/LoadLines.pm',
  ABSTRACT_FROM			=> 'lib/File/LoadLines.pm',
  LICENSE			=> 'perl_5',
  PL_FILES			=> {},
  MIN_PERL_VERSION		=> v5.10.1,

  PREREQ_PM => {
    'MIME::Base64'              => 0,
    'URI::Escape'               => 0,
  },

  CONFIGURE_REQUIRES => {
    'ExtUtils::MakeMaker'	=> 6.76,
  },

#  BUILD_REQUIRES => { 
#  },

  TEST_REQUIRES  => {
    'Test::More'		=> 0,
    'Test::Exception'		=> 0,
    'MIME::Base64'              => 0,
    'URI::Escape'               => 0,
  },

  META_MERGE => {
    resources    => {
      repository => 'https://github.com/sciurius/perl-File-LoadLines',
      bugtracker => "https://github.com/sciurius/perl-File-LoadLines/issues",
    },
  }
);