File: Makefile.PL

package info (click to toggle)
libio-event-perl 0.813-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: perl: 3,176; makefile: 2
file content (47 lines) | stat: -rwxr-xr-x 944 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile being created.
WriteMakefile(
	'NAME'		=> 'IO::Event',
	'DISTNAME'	=> 'IO-Event',
	'VERSION_FROM'	=> 'lib/IO/Event.pm',
	($] >= 5.005 
		?	
			(
				ABSTRACT	=> 'Tied Filehandles for Nonblocking IO with Object Callbacks',
				AUTHOR		=> 'David Muir Sharnoff <cpan@dave.sharnoff.org>',
				META_MERGE     => {
					resources  => {
						repository => 'http://github.com/muir/File-Flock',
					},
				},
			) 
		: ()
	),
	'dist'		=> {COMPRESS=>'gzip', SUFFIX=>'gz'},
	'PREREQ_PM'	=> {
		'IO::Handle' => 0,
		'Time::HiRes' => 0,
		'List::MoreUtils' => 0,
	},
	'BUILD_REQUIRES' => {
		'Event' => 0,
		'AnyEvent' => 0,
		'diagnostics' => 0,
		'Test::Simple' => 0,
	}
);

package MY;

sub postamble {
    <<"END_OF_POSTAMBLE";

pm_to_blib: README

README: lib/IO/Event.pod
\tpod2text lib/IO/Event.pod >README

END_OF_POSTAMBLE
}