File: Makefile.PL

package info (click to toggle)
libcriticism-perl 1.02-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 136 kB
  • sloc: perl: 71; makefile: 2
file content (26 lines) | stat: -r--r--r-- 756 bytes parent folder | download | duplicates (4)
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
#######################################################################
#      $URL: http://perlcritic.tigris.org/svn/perlcritic/tags/criticism-1.02/Makefile.PL $
#     $Date: 2008-07-27 16:11:59 -0700 (Sun, 27 Jul 2008) $
#   $Author: thaljef $
# $Revision: 206 $
########################################################################

use 5.006001;

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile (
    NAME           => 'criticism',
    AUTHOR         => 'Jeffrey Thalhammer <thaljef@cpan.org>',
    ABSTRACT_FROM  => 'lib/criticism.pm',
    VERSION_FROM   => 'lib/criticism.pm',
    PREREQ_PM      => {
        'Perl::Critic' => 1.089,
        'Test::More'   => 0,
        'IO::String'   => 0,
    },
    PL_FILES       => {},
);