Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Module / Build / Platform / cygwin.pm
CommitLineData
3fea05b9 1package Module::Build::Platform::cygwin;
2
3use strict;
4use vars qw($VERSION);
5$VERSION = '0.35';
6$VERSION = eval $VERSION;
7use Module::Build::Platform::Unix;
8
9use vars qw(@ISA);
10@ISA = qw(Module::Build::Platform::Unix);
11
12sub manpage_separator {
13 '.'
14}
15
161;
17__END__
18
19
20=head1 NAME
21
22Module::Build::Platform::cygwin - Builder class for Cygwin platform
23
24=head1 DESCRIPTION
25
26This module provides some routines very specific to the cygwin
27platform.
28
29Please see the L<Module::Build> for the general docs.
30
31=head1 AUTHOR
32
33Initial stub by Yitzchak Scott-Thoennes <sthoenna@efn.org>
34
35=head1 SEE ALSO
36
37perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
38
39=cut