Upgrade to Storable 0.7.4, from Raphael Manfredi,
[p5sagit/p5-mst-13.2.git] / ext / Storable / Makefile.PL
1 # $Id: Makefile.PL,v 0.7.1.1 2000/08/23 22:49:18 ram Exp $
2 #
3 #  Copyright (c) 1995-2000, Raphael Manfredi
4 #  
5 #  You may redistribute only under the terms of the Artistic License,
6 #  as specified in the README file that comes with the distribution.
7 #
8 # $Log: Makefile.PL,v $
9 # Revision 0.7.1.1  2000/08/23 22:49:18  ram
10 # patch3: added MAN3PODS
11 #
12 # Revision 0.7  2000/08/03 22:04:44  ram
13 # Baseline for second beta release.
14 #
15
16 use ExtUtils::MakeMaker;
17 use Config;
18
19 WriteMakefile(
20     'NAME'                      => 'Storable',
21     'DISTNAME'          => "Storable",
22     'MAN3PODS'          => {},
23     'VERSION_FROM'      => 'Storable.pm',
24     'dist'                      => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
25     'clean'                     => {'FILES' => '*%'},
26 );
27