blob: 8fbc5b3a2b6a939c893e9e3b79d2330869d85dd4 (
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
|
# $Id: Makefile.PL,v 1.0 2000/09/01 19:40:41 ram Exp $
#
# Copyright (c) 1995-2000, Raphael Manfredi
#
# You may redistribute only under the same terms as Perl 5, as specified
# in the README file that comes with the distribution.
#
# $Log: Makefile.PL,v $
# Revision 1.0 2000/09/01 19:40:41 ram
# Baseline for first official release.
#
use ExtUtils::MakeMaker;
use Config;
WriteMakefile(
'NAME' => 'Storable',
'DISTNAME' => "Storable",
'MAN3PODS' => {},
'VERSION_FROM' => 'Storable.pm',
'dist' => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
# The % would be understood as a filename wildcard in VMS and
# in some Windows shells. (Charles Lane and Gurusamy Sarathy)
# 'clean' => {'FILES' => '*%'},
);
|