Codebase list libpoe-component-sslify-perl / 97f64b2 Makefile.PL
97f64b2

Tree @97f64b2 (Download .tar.gz)

Makefile.PL @97f64b2raw · history · blame

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
	'NAME'			=> 'POE::Component::SSLify',
	'VERSION_FROM'		=> 'lib/POE/Component/SSLify.pm',
	'PREREQ_PM'		=>	{
		'Net::SSLeay'		=>	'1.30',
	},
	(	$] >= 5.005 ?		# Add new keywords
		(
			'ABSTRACT_FROM'	=> 'lib/POE/Component/SSLify.pm', # retrieve abstract from module
			'AUTHOR'	=> 'Apocalypse <APOCAL@cpan.org>',
			'LICENSE'	=> 'perl',
		) : ()
	),
);