This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add Storable 0.7.2 from Raphael Manfredi,
[perl5.git] / ext / Storable / Makefile.PL
CommitLineData
7a6a85bf
RG
1# $Id: Makefile.PL,v 0.7 2000/08/03 22:04:44 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 2000/08/03 22:04:44 ram
10# Baseline for second beta release.
11#
12
13use ExtUtils::MakeMaker;
14use Config;
15
16WriteMakefile(
17 'NAME' => 'Storable',
18 'DISTNAME' => "Storable",
19 'VERSION_FROM' => 'Storable.pm',
20 'dist' => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
21 'clean' => {'FILES' => '*%'},
22);
23