blob: 87b9d0b20c60f0a535f24e7c8edf4fab1983390e (
plain)
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
|
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile
(
($] ge '5.005') ?
(
'AUTHOR' => 'Ron Savage (rpsavage@ozemail.com.au)',
'ABSTRACT' => "Interface to GNU's CVS",
) : (),
'clean' =>
{
'FILES' => 'blib/* Makefile VCS-CVS-*'
},
'dist' =>
{
'COMPRESS' => 'gzip',
'SUFFIX' => 'gz'
},
'DISTNAME' => 'VCS-CVS',
'NAME' => 'VCS::CVS',
'PM' =>
{
'CVS.pm' => '$(INST_LIBDIR)/CVS.pm',
},
'PREREQ_PM' => {},
'VERSION_FROM' => 'CVS.pm'
);
|