ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Makefile.PL
Revision: 1.13
Committed: Thu Nov 21 13:08:05 2002 UTC (21 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.12: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 if ($] < 5.006) {
4 print <<EOF;
5
6 ***
7 *** WARNING: This module is quite low-level and uses undocumented perl
8 *** internals to do it's job. While it seems to work fine with perl-5.8,
9 *** 5.7 and 5.6, it has not been tested with older versions. If it
10 *** compiles and passes the testsuite, it should work. Otherwise you
11 *** should either upgrade or fix it ;)
12 ***
13 *** Marc Lehmann <pcg\@goof.com>
14 ***
15
16 EOF
17 }
18
19 $EVENT = eval { require Event };
20
21 WriteMakefile(
22 dist => {
23 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
24 COMPRESS => 'gzip -9v',
25 SUFFIX => '.gz',
26 },
27 NAME => "Coro",
28 VERSION_FROM => "Coro.pm",
29 DIR => ['Coro', ($EVENT ? 'Event' : ())],
30 PREREQ_PM => {
31 Event => 0.85,
32 Scalar::Util => 0.00,
33 },
34 PM => {
35 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
36 },
37 );
38
39 sub MY::postamble {
40 <<EOF;
41
42 # set \$VERSION in all modules
43 setver:
44 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
45
46 EOF
47 }
48
49