ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Linux-AIO/Makefile.PL
Revision: 1.1
Committed: Tue Aug 14 03:18:53 2001 UTC (22 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 WriteMakefile(
4 dist => {
5 PREOP => 'pod2text AIO.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
6 COMPRESS => 'gzip -9v',
7 SUFFIX => '.gz',
8 },
9 NAME => "Linux::AIO",
10 VERSION_FROM => "AIO.pm",
11 );
12
13 sub MY::postamble {
14 <<EOF;
15
16 # set \$VERSION in all modules
17 setver:
18 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm
19
20 EOF
21 }
22
23