File: Makefile.PL

package info (click to toggle)
libcvs-perl 0.07-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 416 kB
  • sloc: perl: 2,178; makefile: 9
file content (24 lines) | stat: -rw-r--r-- 590 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use strict;
use ExtUtils::MakeMaker;

WriteMakefile
(
    NAME            => 'Cvs',
    DISTNAME        => 'Cvs',
    VERSION_FROM    => 'lib/Cvs.pm', # finds $VERSION
    PMLIBDIRS       => ['lib'],
    PREREQ_PM       => 
    {
	'IO::Pty'	  => '1.02',
        'IPC::Run'        => '0.74',
        'Class::Accessor' => '0.17',
        'FileHandle'      => '2.0',
        'File::Temp'      => '0.12',
        'Cwd'             => '2.04',
    },
    AUTHOR          => 'Olivier Poitrey <rs@rhapsodyk.net>',
    MAN3PODS        =>
    {
        'lib/Cvs.pm' => 'blib/man3/Cvs.3pm',
    },
);