File: Makefile.PL

package info (click to toggle)
libhtml-stream-perl 1.60-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 388 kB
  • sloc: perl: 666; makefile: 2
file content (18 lines) | stat: -rwxr-xr-x 590 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl
use ExtUtils::MakeMaker;

# Write the Makefile:
WriteMakefile(
	      NAME         => 'HTML::Stream',
	      VERSION_FROM => "lib/HTML/Stream.pm",
	      DISTNAME     => "HTML-Stream",
	      'dist'       => {
			  PREOP    => 'rm .DS_Store &',
			  COMPRESS => 'gzip',
			  SUFFIX   => 'gz',
			  TARFLAGS => '--exclude ._* -cvf'
			  },
	      ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      		(ABSTRACT_FROM  => 'lib/HTML/Stream.pm', # retrieve abstract from module
       		AUTHOR         => 'Daniel T. Staal <DStaal@usa.net>') : ()),
	      );