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