File: Makefile.PL

package info (click to toggle)
libparse-cpan-packages-perl 2.35-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 152 kB
  • sloc: perl: 367; makefile: 2
file content (26 lines) | stat: -rwxr-xr-x 603 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
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME         => 'Parse::CPAN::Packages',
    VERSION_FROM => 'lib/Parse/CPAN/Packages.pm',
    AUTHOR       => 'Leon Brocard <acme@astray.com>',
    ABSTRACT     => 'Parse 02packages.details.txt.gz',
    LICENSE      => 'perl',
    PREREQ_PM    => {
        map { $_ => 0 }
          qw(
          Archive::Peek
          Compress::Zlib
          CPAN::DistnameInfo
          File::Slurp
          Moose
          Path::Class
          PPI
          Test::InDistDir
          Test::More
          version
          )
    }
);