Re: forewarning: usedevel and versiononly
[p5sagit/p5-mst-13.2.git] / ext / Storable / Makefile.PL
CommitLineData
862382c7 1# $Id: Makefile.PL,v 1.0.1.1 2001/01/03 09:38:39 ram Exp $
7a6a85bf 2#
3# Copyright (c) 1995-2000, Raphael Manfredi
4#
9e21b3d0 5# You may redistribute only under the same terms as Perl 5, as specified
6# in the README file that comes with the distribution.
7a6a85bf 7#
7a6a85bf 8
9use ExtUtils::MakeMaker;
10use Config;
11
12WriteMakefile(
527f7b64 13 NAME => 'Storable',
14 DISTNAME => "Storable",
15 MAN3PODS => {},
854b613d 16 PREREQ_PM => { 'Test::More' => '0.41' },
17 INSTALLDIRS => 'perl',
527f7b64 18 VERSION_FROM => 'Storable.pm',
19 dist => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
7a6a85bf 20);