"Fossies" - the Fresh Open Source Software Archive 
Member "HTML-Stream-1.60/Makefile.PL" (28 May 2008, 590 Bytes) of package /linux/www/old/HTML-Stream-1.60.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Perl source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 #!/usr/bin/perl
2 use ExtUtils::MakeMaker;
3
4 # Write the Makefile:
5 WriteMakefile(
6 NAME => 'HTML::Stream',
7 VERSION_FROM => "lib/HTML/Stream.pm",
8 DISTNAME => "HTML-Stream",
9 'dist' => {
10 PREOP => 'rm .DS_Store &',
11 COMPRESS => 'gzip',
12 SUFFIX => 'gz',
13 TARFLAGS => '--exclude ._* -cvf'
14 },
15 ($] >= 5.005 ? ## Add these new keywords supported since 5.005
16 (ABSTRACT_FROM => 'lib/HTML/Stream.pm', # retrieve abstract from module
17 AUTHOR => 'Daniel T. Staal <DStaal@usa.net>') : ()),
18 );