]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blob - Makefile.PL
Importing Variable-Magic-0.01
[perl/modules/Variable-Magic.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'Variable::Magic',
7     AUTHOR              => 'Vincent Pit <perl@profvince.com>',
8     LICENSE             => 'perl',
9     VERSION_FROM        => 'lib/Variable/Magic.pm',
10     ABSTRACT_FROM       => 'lib/Variable/Magic.pm',
11     PL_FILES            => {},
12     PREREQ_PM => {
13         'Carp'       => 0,   
14         'Test::More' => 0,
15         'constant'   => 0
16     },
17     dist                => { 
18         PREOP => 'pod2text lib/Variable/Magic.pm > $(DISTVNAME)/README',
19         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
20     },
21     clean               => { FILES => 'Variable-Magic-*' },
22 );