This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to Storable 1.0.3, from Raphael Manfredi.
[perl5.git] / ext / Storable / Makefile.PL
CommitLineData
9e21b3d0 1# $Id: Makefile.PL,v 1.0 2000/09/01 19:40:41 ram Exp $
7a6a85bf
RG
2#
3# Copyright (c) 1995-2000, Raphael Manfredi
4#
9e21b3d0
JH
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
RG
7#
8# $Log: Makefile.PL,v $
9e21b3d0
JH
9# Revision 1.0 2000/09/01 19:40:41 ram
10# Baseline for first official release.
7a6a85bf
RG
11#
12
13use ExtUtils::MakeMaker;
14use Config;
15
16WriteMakefile(
17 'NAME' => 'Storable',
18 'DISTNAME' => "Storable",
9e21b3d0 19 'MAN3PODS' => {},
7a6a85bf
RG
20 'VERSION_FROM' => 'Storable.pm',
21 'dist' => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
22 'clean' => {'FILES' => '*%'},
23);
24