Codebase list libdata-serializer-perl / upstream/0.39 Makefile.PL
upstream/0.39

Tree @upstream/0.39 (Download .tar.gz)

Makefile.PL @upstream/0.39raw · 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'		=> 'Data::Serializer',
    'DISTNAME'		=> 'Data-Serializer',
    'VERSION_FROM'	=> 'lib/Data/Serializer.pm', # finds $VERSION
    'AUTHOR'		=> 'Neil Neely (neil@frii.net)',
    'PREREQ_PM'		=> 	{
	                 	  'IO::File' => 0,
	                 	  'Digest::SHA' => 0,
	                 	  'Data::Dumper' => 2.08,
       	               		},
    'dist'      => {'COMPRESS'=>'gzip -9f', 'SUFFIX' => 'gz',
                    'ZIP'=>'/usr/bin/zip','ZIPFLAGS'=>'-rl'}

);