File: Makefile.PL

package info (click to toggle)
libpod-elemental-perlmunger-perl 0.093330-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 108 kB
  • ctags: 1
  • sloc: perl: 66; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 605 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

use strict;
use warnings;



use ExtUtils::MakeMaker;

WriteMakefile(
  DISTNAME  => 'Pod-Elemental-PerlMunger',
  NAME      => 'Pod::Elemental::PerlMunger',
  AUTHOR    => "Ricardo\ SIGNES\ \<rjbs\@cpan\.org\>",
  ABSTRACT  => "a\ thing\ that\ takes\ a\ string\ of\ Perl\ and\ rewrites\ its\ documentation",
  VERSION   => '0.093330',
  EXE_FILES => [ qw() ],
  (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
  PREREQ_PM    => {
    "PPI" => '0',
    "Pod::Elemental" => '0.092941',
    "namespace::autoclean" => '0',
    "Moose" => '0',
  },
  test => {TESTS => 't/*.t'}
);