Debian lenny version packages
[pkg-perl] / deb-src / libtree-dagnode-perl / libtree-dagnode-perl-1.06 / Makefile.PL
1 # This script writes the Makefile for installing this distribution.
2 #
3 # See "perldoc perlmodinstall" or "perldoc ExtUtils::MakeMaker" for
4 # info on how to control how the installation goes.
5
6 require 5.004;
7 use strict;
8 use ExtUtils::MakeMaker;
9
10 WriteMakefile(
11     NAME          => 'Tree::DAG_Node',
12     ABSTRACT_FROM => 'lib/Tree/DAG_Node.pm',
13     VERSION_FROM  => 'lib/Tree/DAG_Node.pm',
14     AUTHOR        => 'David Hand, <cogent@cpan.org>',
15     LICENSE       => 'perl',
16     PREREQ_PM     => {
17         Carp   => 0,
18         strict => 0,
19         vars   => 0,
20     },
21     dist         => {
22         COMPRESS => 'gzip -6f',
23         SUFFIX   => 'gz',
24     },
25 );